-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.07 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.07 KB
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": "screamer/hotels",
"type": "project",
"authors": [
{
"name": "George Istomin",
"email": "gi.screamer@gmail.com"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"middlewares/fast-route": "^1.2",
"middlewares/payload": "^2.1",
"middlewares/request-handler": "^1.4",
"middlewares/whoops": "^1.2",
"morris/lessql": "^0.3.5",
"php-di/php-di": "^6.0",
"relay/relay": "2.x@dev",
"robmorgan/phinx": "^0.10.6",
"slim/php-view": "^2.2",
"zendframework/zend-diactoros": "^2.1",
"zendframework/zend-httphandlerrunner": "^1.1"
},
"autoload": {
"psr-4": {
"Hotel\\": "src/Hotel/",
"Common\\": "src/Common/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"codeception/codeception": "^2.5"
}
}