-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
68 lines (68 loc) · 1.97 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
{
"name": "vaimo/webdriver-binary-downloader",
"type": "library",
"license": "MIT",
"description": "General-issue library that enables building any kind of WebDriver binary downloader",
"require": {
"php": ">=5.3.0",
"composer/composer": "^1.0",
"composer-plugin-api": "^1.0"
},
"require-dev": {
"composer/composer": "^1.0.0",
"vaimo/composer-changelogs": "^0.15.4",
"squizlabs/php_codesniffer": "^2.9.2",
"phpcompatibility/php-compatibility": "^9.1.1",
"phpmd/phpmd": "^2.6.0",
"phpunit/phpunit": "^4.8.36",
"sebastian/phpcpd": "^1.4.3"
},
"config": {
"platform": {
"php": "5.3.9"
}
},
"scripts-descriptions": {
"test": "Run tests",
"code:analyse": "Run static code analysis for the source code",
"code:normalise": "Apply automatic fixes to the code based on the static code analysis (where applicable)"
},
"scripts": {
"test": "vendor/bin/phpunit",
"code:analyse": "bin/analyse",
"code:normalise": "bin/normalise",
"post-install-cmd": "bin/bootstrap",
"post-update-cmd" : "bin/bootstrap"
},
"authors": [
{
"name": "Allan Paiste",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/vaimo/webdriver-binary-downloader",
"docs": "https://github.com/vaimo/webdriver-binary-downloader",
"issues": "https://github.com/vaimo/webdriver-binary-downloader/issues"
},
"keywords": [
"browser driver",
"webdriver",
"downloader",
"binary downloader",
"binary"
],
"autoload": {
"psr-4": {
"Vaimo\\WebDriverBinaryDownloader\\": "src"
}
},
"extra": {
"changelog": {
"source": "changelog.json",
"output": {
"md": "CHANGELOG.md"
}
}
}
}