forked from rkeet/behatch-contexts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.05 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
{
"name": "behatch/contexts",
"description": "Behatch contexts",
"keywords": [
"BDD",
"Behat",
"Symfony",
"Context"
],
"type": "library",
"license": "beerware",
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"behat/behat": "^3.8",
"friends-of-behat/mink-extension": "^2.5",
"justinrainbow/json-schema": "^5.2",
"symfony/dom-crawler": "^4.4|^5.3",
"symfony/http-foundation": "^5.3",
"symfony/property-access": "^5.3"
},
"require-dev": {
"atoum/atoum": "^4.0",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.4",
"fabpot/goutte": "^3.3",
"guzzlehttp/guzzle": "^6.5"
},
"autoload": {
"psr-4": {
"Behatch\\": "src/"
}
},
"config": {
"bin-dir": "bin/"
},
"replace": {
"sanpi/behatch-contexts": "self.version",
"behatch/contexts": "self.version"
}
}