Cachet/composer.json

96 lines
2.6 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",
2015-05-25 18:53:00 +01:00
"keywords": ["status", "page", "updates", "cachet", "Cachet", "Cachet HQ", "CachetHQ"],
"type": "project",
2015-01-29 19:03:18 +00:00
"license": "BSD-3-Clause",
2015-05-23 14:50:17 +01:00
"authors": [
{
"name": "James Brooks",
2015-06-25 14:51:14 +01:00
"email": "james@alt-three.com"
2015-05-23 14:50:17 +01:00
},
{
"name": "Graham Campbell",
2015-06-25 14:51:14 +01:00
"email": "graham@alt-three.com"
2015-05-23 14:50:17 +01:00
},
{
"name": "Joseph Cohen",
2015-06-25 14:51:14 +01:00
"email": "joe@alt-three.com"
2015-05-23 14:50:17 +01:00
}
],
2015-03-23 19:40:37 +00:00
"require": {
2015-06-05 09:13:06 +01:00
"php": "^5.5.9",
2015-07-05 15:40:48 +01:00
"laravel/framework": "~5.1.6",
2015-07-25 16:02:35 +01:00
"alt-three/emoji": "^1.0",
2015-07-05 15:40:48 +01:00
"barryvdh/laravel-cors": "^0.5",
"doctrine/dbal": "^2.5",
"fideloper/proxy": "^3.0",
2015-06-24 20:37:13 +01:00
"graham-campbell/binput": "^3.2",
2015-07-25 15:56:03 +01:00
"graham-campbell/markdown": "^4.0",
2015-06-24 20:37:13 +01:00
"graham-campbell/throttle": "^4.1",
2015-07-25 13:30:58 +01:00
"graham-campbell/exceptions": "^4.0",
2015-06-24 21:16:45 +01:00
"guzzlehttp/guzzle": "^6.0.2",
2015-05-28 21:37:44 +01:00
"jenssegers/date": "^3.0",
2015-06-24 20:37:13 +01:00
"mccool/laravel-auto-presenter": "^3.1",
2015-05-28 21:37:44 +01:00
"pragmarx/google2fa": "^0.5",
"roumen/feed": "^2.9",
2015-07-05 15:40:48 +01:00
"watson/validating": "^1.0"
2015-03-23 19:40:37 +00:00
},
"require-dev": {
2015-06-24 20:37:13 +01:00
"fzaninotto/faker": "^1.5",
2015-07-25 13:24:05 +01:00
"laravel/homestead": "^2.1.5",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.7.6"
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": {
"psr-4": {
"CachetHQ\\Tests\\Cachet\\": "tests/"
}
2015-03-23 19:40:37 +00:00
},
"scripts": {
2015-07-07 10:57:29 +01:00
"pre-install-cmd": [
"rm -f compiled.php config.php routes.php services.json"
],
2015-03-23 19:40:37 +00:00
"post-install-cmd": [
2015-07-05 11:51:41 +01:00
"php artisan optimize --force",
"php artisan config:cache",
2015-07-07 10:57:29 +01:00
"php artisan route:cache",
2015-07-07 11:26:21 +01:00
"chmod -R 755 storage"
2015-03-23 19:40:37 +00:00
],
2015-05-28 15:18:22 +01:00
"pre-update-cmd": [
2015-07-07 10:57:29 +01:00
"rm -f compiled.php config.php routes.php services.json"
2015-05-28 15:18:22 +01:00
],
2015-03-23 19:40:37 +00:00
"post-update-cmd": [
2015-07-05 11:51:41 +01:00
"php artisan optimize --force",
"php artisan config:cache",
2015-07-07 10:57:29 +01:00
"php artisan route:cache",
2015-07-07 11:26:21 +01: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": {
2015-05-25 18:02:04 +01:00
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
2015-08-01 21:06:31 +01:00
"dev-master": "2.0-dev"
2015-05-25 18:02:04 +01:00
}
2015-05-23 10:48:10 +01:00
},
"minimum-stability": "dev",
"prefer-stable": true
2014-11-16 22:26:08 +00:00
}