Files
spa-api/composer.json

39 lines
711 B
JSON
Raw Normal View History

2013-01-11 15:14:07 -06:00
{
2013-06-07 16:58:58 -07:00
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
2013-01-11 15:14:07 -06:00
"require": {
2014-08-11 10:42:42 -05:00
"laravel/framework": "4.3.*"
2013-01-11 15:14:07 -06:00
},
"autoload": {
"classmap": [
2014-08-13 10:01:57 -05:00
"app/console",
2014-08-11 10:13:20 -05:00
"app/database",
2014-08-13 09:44:20 -05:00
"app/http",
2013-01-11 15:14:07 -06:00
"app/tests/TestCase.php"
2014-08-11 10:13:20 -05:00
],
"psr-4": {
2014-08-13 10:00:36 -05:00
"App\\": "app/core/",
2014-08-13 09:44:20 -05:00
"Providers\\": "app/providers/"
2014-08-11 10:13:20 -05:00
}
2013-01-11 15:14:07 -06:00
},
"scripts": {
2013-05-04 19:29:52 -05:00
"post-install-cmd": [
"php artisan clear-compiled",
2013-05-04 19:29:52 -05:00
"php artisan optimize"
],
2013-05-03 22:26:37 -05:00
"post-update-cmd": [
2013-10-11 22:34:42 -05:00
"php artisan clear-compiled",
2013-05-03 22:26:37 -05:00
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
2013-05-03 22:26:37 -05:00
]
},
"config": {
"preferred-install": "dist"
},
2014-08-01 00:55:37 -05:00
"minimum-stability": "dev"
}