-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
37 lines (37 loc) · 1.09 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
{
"name": "mrcoco/slim3-eloquent-skeleton",
"description": "Simple Slim Framework 3 skeleton with scaffold tool, migrations,Twig,eloquent & Monolog.",
"license": "BSD-3-Clause",
"type": "project",
"keywords": ["slim-framework", "skeleton","auth","csfr","eloquent","console","cli-tool","migration","scaffold"],
"authors": [
{
"name": "Dwi Agus",
"email": "dwiagus@cempakaweb.com",
"homepage": "http://cempakaweb.com"
}
],
"autoload": {
"psr-4": {
"App\\": "app/src"
}
},
"require": {
"slim/slim": "^3.0",
"slim/twig-view": "^1.1",
"slim/flash": "^0.1.0",
"monolog/monolog": "^1.13",
"illuminate/database": "^5.1",
"slim/csrf": "^0.5.0",
"davedevelopment/phpmig": "^1.2",
"zeuxisoo/slim-whoops": "^0.4.0",
"alexgarrett/violin": "^2.2",
"carlosocarvalho/simple-input": "^1.0",
"symfony/process": "^3.0"
},
"scripts": {
"post-update-cmd": [
"php cli.php migrate"
]
}
}