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