-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (42 loc) · 1.08 KB
/
composer.json
File metadata and controls
45 lines (42 loc) · 1.08 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
{
"name": "mink/driver-testsuite",
"description": "Functional testsuite for Mink drivers",
"homepage": "http://mink.behat.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "ever.zet@gmail.com",
"homepage": "http://everzet.com"
},
{
"name": "Christophe Coevoet",
"email": "stof@notk.org"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/oleg-andreyev/Mink.git",
"no-api": true
}
],
"require": {
"php": ">=5.4",
"behat/mink": "dev-deprecate-keyup-keypress-keydown",
"symfony/phpunit-bridge": "^4.2"
},
"require-dev": {
"symfony/http-kernel": "^2.7 || ^3.2 || ^4.0"
},
"bin": [
"bin/mink-test-server"
],
"autoload": {
"psr-4": {
"Behat\\Mink\\Tests\\Driver\\Util\\": "src/",
"Behat\\Mink\\Tests\\Driver\\": "tests/"
}
}
}