-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.29 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
49
{
"name": "cooperaj/behat-psr-extension",
"description": "Provides a bootstrapped PSR7 application and PSR11 container to your behat contexts",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Adam Cooper",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"friends-of-behat/mink-browserkit-driver": "^1.6.1",
"friends-of-behat/mink-extension": "^2.4",
"symfony/http-foundation": "^5.1",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/http-kernel": "^5.1"
},
"autoload": {
"psr-4": {
"Acpr\\Behat\\Psr\\": "src/",
"Acpr\\Behat\\Psr\\FeatureContexts\\": "tests/features/contexts/"
}
},
"autoload-dev": {
"psr-4": {
"TestAcpr\\Behat\\Psr\\": "tests/unit"
}
},
"require-dev": {
"laminas/laminas-diactoros": "^2.2",
"laminas/laminas-config-aggregator": "^1.1",
"laminas/laminas-servicemanager": "^3.4",
"mezzio/mezzio": "^3.2",
"mezzio/mezzio-fastroute": "^3.0",
"behat/behat": "^3.5",
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"vimeo/psalm": "^4.8",
"infection/infection": ">=0.15",
"psalm/plugin-phpunit": "^0.16.1"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}