-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
53 lines (53 loc) · 1.46 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
{
"name": "xsanisty/slim-starter",
"description": "Slim Framework in MVC environment with Eloquent as database provider and Twig as template engine",
"keywords": ["framework", "slim", "mvc", "eloquent", "twig", "slim-starter"],
"license": "MIT",
"authors": [
{
"name": "Ikhsan Agustian",
"email": "ikhsan017@gmail.com",
"homepage":"http://www.xsanisty.com/project/slimstarter",
"role": "developer"
}
],
"require": {
"php": ">= 5.3.0",
"slim/slim": "2.4.*",
"slim/views":"0.1.2",
"twig/twig": "1.*",
"twig/extensions": "*",
"itsgoingd/slim-facades": "dev-master",
"illuminate/database" : "4.*",
"cartalyst/sentry" : "2.*",
"ircmaxell/password-compat": "1.0.*"
},
"autoload": {
"psr-4": {
"" : [
"src/",
"app/controllers/",
"app/models/",
"app/middlewares/",
"app/modules/"
]
}
},
"scripts": {
"post-install-cmd": [
"chmod -R 777 app/storage",
"php migrate.php"
],
"post-update-cmd": [
"rm -rf app/storage/cache/*"
],
"post-create-project-cmd": [
"chmod -R 777 app/storage",
"php migrate.php"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}