Cachet/composer.json

68 lines
1.7 KiB
JSON
Raw Normal View History

2014-11-16 22:26:08 +00:00
{
2014-12-29 19:58:48 +00:00
"name": "cachethq/cachet",
"description": "Open Source StatusPage.io alternative written in PHP.",
"keywords": [
"status page",
"status",
"board"
],
2014-12-29 19:58:48 +00:00
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.4",
2014-12-29 19:58:48 +00:00
"laravel/framework": "4.2.*",
"guzzlehttp/guzzle": "~5.0",
"dingo/api": "0.8.*",
2014-12-29 21:58:30 +00:00
"graham-campbell/throttle": "~2.0",
2014-12-30 12:49:39 +00:00
"graham-campbell/markdown": "~2.0",
2014-12-29 19:58:48 +00:00
"watson/validating": "0.10.*",
"thujohn/rss": "~1.0",
"doctrine/dbal": "2.5.*",
"erusev/parsedown-extra": "~0.1"
2014-12-29 19:58:48 +00:00
},
"require-dev": {
"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": {
"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 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
}