-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.09 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "itnelo/reactphp-webdriver",
"type": "library",
"description": "An async, W3C compliant PHP client for Selenium Grid server (hub)",
"keywords": ["php", "reactphp", "webdriver", "selenium"],
"homepage": "https://github.com/itnelo/reactphp-webdriver",
"license": "MIT",
"authors": [
{
"name": "Pavel Petrov",
"email": "itnelo@gmail.com",
"homepage": "https://ppetrov.it",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Itnelo\\React\\WebDriver\\": [
"src/"
]
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"react/http": "^1.2",
"react/promise": "^2.8",
"react/promise-timer": "^1.6",
"react/stream": "^1.1",
"symfony/options-resolver": "^5.1"
},
"require-dev": {
"php-webdriver/webdriver": "^1.9"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}