mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"laravel/framework": "4.2.*",
|
|
"guzzlehttp/guzzle": "~5.0",
|
|
"dingo/api": "0.6.*",
|
|
"watson/validating": "0.10.*",
|
|
"thujohn/rss": "dev-master"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.3.0",
|
|
"mockery/mockery": "0.9.*"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"app/commands",
|
|
"app/controllers",
|
|
"app/models",
|
|
"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"
|
|
}
|
|
}
|