-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.54 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
{
"name": "ingenerator/chrome-mink-driver",
"description": "Mink driver for controlling chrome without selenium",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dorian More",
"email": "[email protected]"
},
{
"name": "Craig Gosman",
"email": "[email protected]"
}
],
"homepage": "https://gitlab.com/behat-chrome/chrome-mink-driver",
"support": {
"issues": "https://gitlab.com/behat-chrome/chrome-mink-driver/-/issues"
},
"replace": {
"dmore/chrome-mink-driver": "*"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"behat/mink": "^1.9",
"phrity/websocket": "^1.7.0"
},
"require-dev": {
"mink/driver-testsuite": "dev-master",
"phpunit/phpunit": "^8.5.22 || ^9.5.11",
"squizlabs/php_codesniffer": "^3.5"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"DMore\\ChromeDriver\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DMore\\ChromeDriverTests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp-shim": true
}
},
"scripts": {
"coverage": "XDEBUG_MODE=coverage phpunit --log-junit phpunit-report.xml --coverage-cobertura phpunit-coverage.xml --coverage-text --colors=never"
}
}