-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.07 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
{
"name": "blackakula/af",
"type": "library",
"description": "Sergii Akulinin Automation Framework",
"keywords": ["automation","selenium"],
"license": "OSL 3.0",
"authors": [
{
"name": "Sergii Akulinin",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "chrome/webdriver",
"version": "26.0.1383.0",
"dist": {
"url": "https://chromedriver.googlecode.com/files/chromedriver_win_26.0.1383.0.zip",
"type": "zip"
}
}
}
],
"require": {
"php": ">=5.3.3",
"ext-json": "*",
"symfony/yaml": "~2.0",
"phpunit/phpunit": ">=3.7.18",
"phpunit/phpunit-selenium": ">=1.2.12",
"claylo/selenium-server-standalone": ">=2.32.0",
"chrome/webdriver": ">=26.0"
},
"autoload": {
"psr-0": { "": ["framework/src","framework/unit/testsuite","testsuite"] }
}
}