forked from tuupola/slim-api-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.42 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.42 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
45
46
47
48
49
50
{
"name": "groupnet/slim-api-skeleton",
"description": "Slim 3 + Spot + Monolog API skeleton",
"type": "project",
"keywords": [
"slim",
"skeleton"
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/groupnet/slim-api-skeleton"
}
],
"homepage": "https://github.com/tuupola/slim-api-skeleton",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "tuupola@appelsiini.net",
"homepage": "http://www.appelsiini.net/",
"role": "Developer"
}
],
"require": {
"groupnet/slim-api-skeleton": "dev-master",
"slim/slim": "^3.0",
"monolog/monolog": "^1.17",
"tuupola/slim-jwt-auth": "^2.0",
"tuupola/slim-basic-auth": "^2.0",
"league/fractal": "^0.13.0",
"paragonie/random_compat": "^1.2",
"tuupola/cors-middleware": "^0.5.0",
"micheh/psr7-cache": "^0.5.0",
"gofabian/negotiation-middleware": "^0.1.1",
"tuupola/base62": "^0.5.0"
},
"autoload": {
"psr-4": {
"App\\": "lib/App/",
"Utils\\": "lib/Utils/",
"Exception\\": "lib/Exception/",
"Slim\\Handlers\\": "lib/Slim/Handlers/",
"Slim\\Middleware\\": "lib/Slim/Middleware/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5"
}
}