forked from Behatch/contexts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (40 loc) · 1.06 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": "svetel/behatch-contexts",
"description": "Revived abandoned \"Behatch contexts\".",
"keywords": ["BDD", "Behat", "Symfony", "Context"],
"type": "library",
"license": "beerware",
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"behat/behat": "^3.12",
"friends-of-behat/mink-extension": "^2.7",
"justinrainbow/json-schema": "^5.2",
"symfony/property-access": "^5.0|^6.0",
"symfony/http-foundation": "^5.0|^6.0",
"symfony/dom-crawler": "^5.0|^6.0"
},
"require-dev": {
"behat/mink-goutte-driver": "^2.0",
"guzzlehttp/guzzle": "^7.5",
"behat/mink-selenium2-driver": "^1.6",
"fabpot/goutte": "^4.0"
},
"autoload": {
"psr-4": {
"Behatch\\": "src/"
}
},
"config": {
"bin-dir": "bin/"
},
"replace": {
"sanpi/behatch-contexts": "self.version",
"behatch/contexts": "3.*"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}