-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.32 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": "khanhicetea/slimfit",
"description": "Good enough RESTful API framework built on top Slim 3",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"type": "project",
"authors": [
{
"name": "KhanhIceTea",
"email": "khanhicetea@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"slim/slim": "^3.5",
"monolog/monolog": "^1.21",
"vlucas/phpdotenv": "^2.3",
"zendframework/zend-diactoros": "^1.3",
"oscarotero/psr7-middlewares": "^3.16",
"schnittstabil/psr7-middleware-stack": "^3.0",
"willdurand/negotiation": "^2.0"
},
"suggest": {
"tuupola/slim-jwt-auth": "PSR-7 JWT Authentication Middleware",
"league/fractal": "Fractal provides a presentation and transformation layer for complex data output, the like found in RESTful APIs, and works really well with JSON",
"php-pm/php-pm": "Bring High Performance Into Your PHP App (with ReactPHP)",
"slim/twig-view": "A good template engine",
"robmorgan/phinx": "Database migration management tool",
"symfony/console": "Console application",
"illuminate/events": "Event dispatcher for Eloquent",
"illuminate/database": "Eloquent query builder"
},
"autoload": {
"classmap": ["PpmBootstrap.php"],
"psr-4": {
"App\\": "app/",
"App\\Tests\\": "tests/"
}
}
}