forked from stupidlysimple/php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·38 lines (38 loc) · 979 Bytes
/
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
{
"name": "stupidlysimple/php",
"description": "StupidlySimple Framework for PHP - MVC Framework for lazy developers",
"keywords": ["micro framework","lazy","stupidlysimple","php framework"],
"license": "MIT",
"type": "project",
"authors": [{
"name": "Fariz Luqman",
"email": "[email protected]",
"homepage": "https://stupidlysimple.github.io",
"role": "Developer"
}],
"config": {
"vendor-dir": "vendor"
},
"require": {
"php": ">=5.4.0",
"filp/whoops": "^2.1",
"stupidlysimple/php-core": "0.5.*",
"symfony/var-dumper": "^3.1",
"phpFastCache/phpFastCache": "^4.3",
"illuminate/database": "5.2.*",
"cartalyst/sentry": "2.1.*"
},
"require-dev": {
"phpunit/phpunit": "5.4.*"
},
"autoload": {
"psr-4": {
"Core\\": "app/Core"
},
"classmap": [
"app/Model",
"app/Controller",
"app/Service"
]
}
}