Cachet/composer.json

83 lines
2.1 KiB
JSON
Raw Normal View History

2014-11-16 22:26:08 +00:00
{
"name": "cachethq/cachet",
"description": "An open source status page system written in PHP",
"keywords": [
"status",
"page",
"updates"
],
2015-01-29 19:03:18 +00:00
"license": "BSD-3-Clause",
"type": "project",
"require": {
"php": ">=5.4",
"ext-mbstring": "*",
"ext-mcrypt": "*",
"ext-openssl": "*",
2015-02-21 14:08:03 +00:00
"ext-apcu": "*",
"laravel/framework": "4.2.*",
2015-02-13 08:21:57 +00:00
"cachethq/segment": "1.0.*",
"dingo/api": "0.8.*",
"doctrine/dbal": "2.5.*",
"graham-campbell/binput": "2.1.*",
2015-02-03 16:14:37 +00:00
"graham-campbell/markdown": "~2.0.7",
"graham-campbell/throttle": "2.0.*",
"guzzlehttp/guzzle": "5.1.*",
"jenssegers/date": "2.0.*",
"mccool/laravel-auto-presenter": "2.2.*",
"pragmarx/google2fa": "0.1.*",
"roumen/feed": "2.8.*",
"thujohn/rss": "1.0.*",
"watson/validating": "0.10.*",
"fideloper/proxy": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"mockery/mockery": "0.9.*"
},
"autoload": {
"classmap": [
"app/database/migrations",
"app/database/seeds"
],
"files": [
"src/helpers.php"
],
"psr-4": {
"CachetHQ\\Cachet\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
2015-02-21 13:24:57 +00:00
"heroku": {
"document-root": "public",
"index-document": "index.php",
"log-files": [
"app/storage/logs/laravel.log"
2015-02-21 14:11:09 +00:00
],
"nginx-includes": ["nginx.conf"]
}
},
"scripts": {
"post-install-cmd": [
"php artisan optimize",
2015-02-27 08:15:35 +00:00
"chmod -R 755 app/storage",
"php artisan cachet:one-click-deploy"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize",
2015-02-27 08:15:35 +00:00
"chmod -R 755 app/storage"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
2014-11-16 22:26:08 +00:00
}