forked from crschoen/FlexibleMink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.02 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
{
"name": "medology/flexible-mink",
"type": "library",
"description": "Mink Extensions for Commonly Used Assertions and Object Storage",
"keywords": ["mink", "behat", "testing"],
"license": "MIT",
"support": {
"issues": "https://github.com/Medology/FlexibleMink/issues",
"source": "https://github.com/Medology/FlexibleMink"
},
"require": {
"php": ">=5.6.31",
"behat/behat": "^3.0",
"symfony/config": ">=2.8",
"behat/mink-extension": "^2.0",
"chekote/noun-store": "^4.0",
"ext-zip": "^1.0",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"behat/mink-selenium2-driver": "dev-1.3.1-with-patches as 1.3.1"
},
"config": {
"platform": {
"php": "5.6.31"
}
},
"autoload": {
"psr-0": {
"": "src/"
}
},
"autoload-dev": {
"psr-0": {
"features": ""
},
"psr-4": {
"Tests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Chekote/MinkSelenium2Driver"
}
]
}