-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
34 lines (34 loc) · 972 Bytes
/
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
{
"name": "ciaranmcnulty/behat-psr7extension",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ciaran McNulty",
"email": "mail@ciaranmcnulty.com"
}
],
"require": {
"php" : "^7.0",
"psr/http-message": "^1.0",
"behat/mink-extension": "^2.0",
"behat/mink-browserkit-driver": "^1.0",
"symfony/http-kernel": "^3.0",
"zendframework/zend-diactoros": "^1.0",
"symfony/http-foundation": "^3.0",
"symfony/psr-http-message-bridge": "^1.0"
},
"require-dev": {
"behat/behat": "^3.3",
"phpunit/phpunit": "^6.1",
"zendframework/zend-expressive": "^2.0.3",
"zendframework/zend-servicemanager": "^3.3.0",
"zendframework/zend-expressive-fastroute": "^2.0.0",
"slim/slim": "^3.8"
},
"autoload" : {
"psr-4" : {
"Cjm\\Behat\\Psr7Extension\\" : "src"
}
}
}