forked from tuupola/slim-api-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.61 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "tuupola/slim-api-skeleton",
"description": "Slim 3 + Zend Table Gateway + Monolog API skeleton",
"type": "project",
"keywords": [
"slim",
"api",
"rest",
"skeleton"
],
"homepage": "https://github.com/tuupola/slim-api-skeleton",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "[email protected]",
"homepage": "https://appelsiini.net/",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"require": {
"crell/api-problem": "^2.0",
"gofabian/negotiation-middleware": "^0.1.2",
"league/fractal": "^0.13.0",
"league/tactician": "^1.0",
"lstrojny/functional-php": "^1.6",
"micheh/psr7-cache": "^0.5.0",
"monolog/monolog": "^1.17",
"robmorgan/phinx": "^0.9.2",
"slim/slim": "^3.9",
"tuupola/base62": "^2.0",
"tuupola/cors-middleware": "^1.0",
"tuupola/slim-basic-auth": "^3.2",
"tuupola/slim-jwt-auth": "^3.1",
"vlucas/phpdotenv": "^2.0",
"zendframework/zend-db": "^2.9",
"zendframework/zend-hydrator": "^2.3",
"zendframework/zend-inputfilter": "^2.8"
},
"autoload": {
"psr-4": {
"Skeleton\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Skeleton\\": "src/"
}
},
"require-dev": {
"overtrue/phplint": "^1.0",
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "^3.2",
"tuupola/http-factory": "^1.0"
}
}