-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
44 lines (44 loc) · 1.15 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
{
"name": "roave/behat-psr11extension",
"description": "PSR-11 Container extension for Behat",
"type": "library",
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"behat/behat": "^3.14.0",
"psr/container": "^1.1.2",
"symfony/config": "^6.0.19",
"symfony/dependency-injection": "^6.0.20"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"laminas/laminas-servicemanager": "^3.20.0",
"phpunit/phpunit": "^9.6.19"
},
"license": "MIT",
"authors": [
{
"name": "James Titcumb",
"email": "james@asgrim.com"
}
],
"autoload": {
"psr-4": {
"Roave\\BehatPsrContainer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RoaveFeatureTest\\BehatPsrContainer\\": "features/bootstrap/",
"RoaveTest\\BehatPsrContainer\\": "test/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.0.99"
},
"sort-packages": true
}
}