forked from Behatch/contexts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (39 loc) · 1.04 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": "behatch/contexts",
"description": "Behatch contexts",
"keywords": ["BDD", "Behat", "Symfony2", "Context"],
"type": "library",
"license": "beerware",
"require": {
"php": ">=5.5",
"behat/behat": "^3.0.13",
"friends-of-behat/mink-extension": "^2.3.1",
"justinrainbow/json-schema": "^5.0",
"symfony/property-access": "^2.3|^3.0|^4.0|^5.0",
"symfony/http-foundation": "^2.3|^3.0|^4.0|^5.0",
"symfony/dom-crawler": "^2.4|^3.0|^4.0|^5.0"
},
"require-dev": {
"behat/mink-goutte-driver": "^1.1",
"guzzlehttp/guzzle": "^6.3",
"behat/mink-selenium2-driver": "^1.4@dev",
"atoum/atoum": "^2.8|^3.0",
"fabpot/goutte": "^3.2"
},
"autoload": {
"psr-4": {
"Behatch\\": "src/"
}
},
"config": {
"bin-dir": "bin/"
},
"replace": {
"sanpi/behatch-contexts": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}