-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (33 loc) · 1.14 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
{
"name": "sainsburys/sainsburys-http-service",
"version": "2.2.0",
"license": "MIT",
"require": {
"php": ">=7.0.0",
"slim/slim": "^3.0.0",
"container-interop/container-interop": "~1.1.0",
"psr/http-message": "1.0.0",
"psr/log": "1.0.0",
"shrikeh/teapot": "^1.0",
"ultra-lite/container": "^2.0",
"samburns/config-file-parser": "^1.0",
"zendframework/zend-diactoros": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.1.3",
"phpspec/phpspec": "~2.4.1",
"behat/behat": "~3.1.0rc1",
"guzzlehttp/guzzle": "^6.1.1"
},
"autoload": {
"psr-0": {
"Sainsburys\\HttpService\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Sainsburys\\HttpService\\Dev\\": "src-dev/sample-application/src/",
"Sainsburys\\HttpService\\Test\\": "tests/behat/context_files/"
}
}
}