forked from minkphp/driver-testsuite
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
45 lines (39 loc) · 1.01 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
{
"name": "friends-of-behat/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.4|^8.0",
"behat/mink": "^1.7",
"symfony/phpunit-bridge": "^4.4|^5.0|^6.0"
},
"require-dev": {
"symfony/http-kernel": "^4.4|^5.0|^6.0",
"phpunit/phpunit": "^9.5"
},
"replace": {
"mink/driver-testsuite": "self.version"
},
"bin": [
"bin/mink-test-server"
],
"autoload": {
"psr-4": {
"Behat\\Mink\\Tests\\Driver\\Util\\": "src/",
"Behat\\Mink\\Tests\\Driver\\": "tests/"
}
}
}