forked from sugerless/WebAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 726 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 726 Bytes
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
{
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
},
"config": {
"secure-http": false,
"preferred-install": "dist"
},
"autoload": {
"psr-0": {
"Dao": "application/models/Dao",
"Service": "application/models/Service"
},
"psr-4": {
"SwuOS\\Openapi\\Exception\\": "application/Exception/",
"SwuOS\\Openapi\\Library\\": "application/Library/",
"SwuOS\\Openapi\\Command\\": "application/Command/"
}
},
"require": {
"monolog/monolog": "1.23.0",
"illuminate/database": "5.5.17",
"illuminate/validation": "5.5.17",
"symfony/console": "4.0.3",
"firebase/php-jwt": "^5.0"
}
}