forked from dbrekelmans/browser-driver-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.94 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.94 KB
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
{
"name": "dbrekelmans/browser-driver-installer",
"description": "Helps you install the appropriate browser driver.",
"homepage": "https://github.com/dbrekelmans/browser-driver-installer",
"authors": [
{
"name": "Daniël Brekelmans",
"homepage": "https://github.com/dbrekelmans"
},
{
"name": "Contributors",
"homepage": "https://github.com/dbrekelmans/browser-driver-installer/graphs/contributors"
}
],
"keywords": [
"driver",
"browser-driver",
"chromedriver",
"geckodriver",
"google chrome",
"chromium",
"firefox",
"browser"
],
"license": "MIT",
"bin": [
"bdi"
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"ext-zip": "*",
"ext-zlib": "*",
"myclabs/php-enum": "^1.7",
"symfony/console": "^5.1",
"symfony/filesystem": "^5.1",
"symfony/http-client": "^5.1",
"symfony/polyfill-php80": "^1.18",
"symfony/process": "^5.1",
"thecodingmachine/safe": "^1.1"
},
"require-dev": {
"doctrine/coding-standard": "^8.0",
"phpstan/phpstan": "^0.12.36",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/phpstan-strict-rules": "^0.12.5",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"thecodingmachine/phpstan-strict-rules": "^0.12.0"
},
"autoload": {
"psr-4": {
"DBrekelmans\\BrowserDriverInstaller\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DBrekelmans\\BrowserDriverInstaller\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform-check": false
}
}