Cachet/composer.json

63 lines
1.3 KiB
JSON
Raw Normal View History

2014-11-16 22:26:08 +00:00
{
2014-12-20 20:44:10 +00:00
"name": "cachethq/cachet",
"description": "Open Source StatusPage.io alternative written in PHP.",
"keywords": [
2014-12-20 20:44:10 +00:00
"status page",
"status",
"board"
],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "4.2.*",
"guzzlehttp/guzzle": "~5.0",
2014-12-21 11:40:54 +00:00
"dingo/api": "0.8.*",
"watson/validating": "0.10.*",
2014-12-20 20:32:15 +00:00
"thujohn/rss": "~1.0"
},
"require-dev": {
2014-12-21 11:40:54 +00:00
"phpunit/phpunit": "~4.3",
"mockery/mockery": "0.9.*"
},
"autoload": {
"classmap": [
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php",
"app/filters"
],
"psr-4": {
2014-12-21 11:40:54 +00:00
"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",
2014-12-01 16:46:56 +00:00
"chmod -R 755 app/storage",
"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"
}
2014-11-16 22:26:08 +00:00
}