Cachet/composer.json

71 lines
1.8 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",
2015-03-23 19:40:37 +00:00
"require": {
"php": ">=5.4.0",
2015-02-21 14:08:03 +00:00
"ext-apcu": "*",
2015-03-23 19:40:37 +00:00
"laravel/framework": "5.0.*",
2015-03-20 18:30:45 -06:00
"illuminate/html": "5.0.*",
"cachethq/segment": "^2.0",
"doctrine/dbal": "^2.5",
"fideloper/proxy": "^3.0",
"graham-campbell/binput": "^3.0",
"graham-campbell/markdown": "^3.0",
"graham-campbell/throttle": "^3.0",
2015-03-30 21:44:32 +01:00
"graham-campbell/exceptions": "^1.0",
"guzzlehttp/guzzle": "^5.0",
"jenssegers/date": "^2.0",
"mccool/laravel-auto-presenter": "^3.0",
"pragmarx/google2fa": "^0.1",
"roumen/feed": "^2.9",
2015-05-18 22:07:28 +01:00
"watson/validating": "^1.0",
"barryvdh/laravel-cors": "0.5.x@dev"
2015-03-23 19:40:37 +00:00
},
"require-dev": {
"phpunit/phpunit": "^4.4",
"mockery/mockery": "^0.9"
2015-03-23 19:40:37 +00:00
},
"autoload": {
2015-03-23 19:40:37 +00:00
"classmap": [
"database"
],
"files": [
2015-03-20 18:30:45 -06:00
"app/Http/helpers.php"
],
2015-03-23 19:40:37 +00:00
"psr-4": {
"CachetHQ\\Cachet\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize",
"chmod -R 755 storage"
2015-03-23 19:40:37 +00:00
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize",
2015-03-20 18:30:45 -06:00
"chmod -R 755 storage"
2015-03-23 19:40:37 +00:00
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
2014-11-16 22:26:08 +00:00
}