-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
50 lines (46 loc) · 1.33 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
{
"name": "mink/driver-testsuite",
"description": "Functional testsuite for Mink drivers",
"homepage": "http://mink.behat.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "[email protected]",
"homepage": "http://everzet.com"
},
{
"name": "Christophe Coevoet",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"behat/mink": "^1.11",
"symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"phpunit/phpunit": "^8.5.22 || ^9.5.11",
"yoast/phpunit-polyfills": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"conflict": {
"symfony/http-foundation": "<4.4 || >=8",
"symfony/http-kernel": "<4.4 || >=8"
},
"bin": [
"bin/mink-test-server"
],
"autoload": {
"psr-4": {
"Behat\\Mink\\Tests\\Driver\\Util\\": "src/",
"Behat\\Mink\\Tests\\Driver\\": "tests/"
}
}
}