mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
60 lines
1.1 KiB
JSON
60 lines
1.1 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": ["framework", "laravel"],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"laravel/framework": "4.2.*",
|
|
"guzzlehttp/guzzle": "4.*",
|
|
"dingo/api": "~0.6",
|
|
"watson/validating": "0.10.*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.3.0"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"app/commands",
|
|
"app/controllers",
|
|
"app/models",
|
|
"app/transformers",
|
|
"app/database/migrations",
|
|
"app/database/seeds",
|
|
"app/tests/TestCase.php",
|
|
"app/filters"
|
|
],
|
|
"psr-4": {
|
|
"CachetHQ\\": "app/CachetHq"
|
|
}
|
|
},
|
|
"extra": {
|
|
"heroku": {
|
|
"framework": "silex",
|
|
"document-root": "public",
|
|
"index-document": "index.php",
|
|
"log-files": [
|
|
"app/storage/logs/laravel.log"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"php artisan optimize",
|
|
"chmod -R 777 app/storage public",
|
|
"php artisan migrate"
|
|
],
|
|
"post-update-cmd": [
|
|
"php artisan clear-compiled",
|
|
"php artisan optimize"
|
|
],
|
|
"post-create-project-cmd": [
|
|
"php artisan key:generate"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist"
|
|
},
|
|
"minimum-stability": "stable"
|
|
}
|