-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
68 lines (68 loc) · 1.89 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": "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": "^8.1",
"ext-json": "*",
"ext-zip": "*",
"ext-zlib": "*",
"symfony/console": "^6.0",
"symfony/filesystem": "^6.0",
"symfony/http-client": "^6.0",
"symfony/polyfill-php80": "^1.28",
"symfony/process": "^6.0",
"thecodingmachine/safe": "^2.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-latest",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"thecodingmachine/phpstan-strict-rules": "^1.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
}
}