-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.14 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "bhittani/web-driver",
"license": "MIT",
"description": "A convenience wrapper around facebook's php-webdriver",
"keywords": [
"web",
"driver",
"process",
"testing",
"chrome",
"phantomjs",
"php-webdriver"
],
"homepage": "https://github.com/kamalkhan/web-driver",
"authors": [
{
"role": "developer",
"name": "Kamal Khan",
"email": "shout@bhittani.com",
"homepage": "http://bhittani.com"
}
],
"support": {
"source": "https://github.com/kamalkhan/web-driver",
"issues": "https://github.com/kamalkhan/web-driver/issues"
},
"bin": [
"bin/install-chrome-driver",
"bin/install-phantomjs-driver"
],
"autoload": {
"psr-4": {
"Bhittani\\WebDriver\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bhittani\\WebDriver\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"platform": {
"php": "5.6"
}
},
"require": {
"php": ">=5.6",
"bhittani/download": "^0.2.0",
"php-webdriver/webdriver": "^1.8",
"symfony/console": "*",
"symfony/process": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "<8"
},
"scripts": {
"test": "phpunit --colors=always",
"cs-fix": "php-cs-fixer fix --using-cache=no",
"cs-check": "php-cs-fixer fix --dry-run --using-cache=no",
"install-chrome-driver": "bin/install-chrome-driver",
"install-phantomjs-driver": "bin/install-phantomjs-driver",
"install-drivers": "bin/install-chrome-driver -q & bin/install-phantomjs-driver -q"
},
"repositories": [
{
"packagist": false
},
{
"type": "composer",
"url": "https://packagist.org"
}
]
}