2014-11-16 22:26:08 +00:00
|
|
|
{
|
2015-01-24 21:01:06 +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-10-24 22:24:39 +01:00
|
|
|
"php": ">=5.5.9",
|
2015-10-28 22:31:48 +00:00
|
|
|
"laravel/framework": "~5.1.22",
|
2015-10-07 14:20:28 +01:00
|
|
|
"alt-three/emoji": "^2.0",
|
2015-10-20 20:32:53 +01:00
|
|
|
"alt-three/validator": "^1.3",
|
2015-07-05 15:40:48 +01:00
|
|
|
"barryvdh/laravel-cors": "^0.5",
|
2015-03-23 19:44:30 +00:00
|
|
|
"doctrine/dbal": "^2.5",
|
|
|
|
"fideloper/proxy": "^3.0",
|
2015-06-24 20:37:13 +01:00
|
|
|
"graham-campbell/binput": "^3.2",
|
2015-08-06 15:17:30 +01:00
|
|
|
"graham-campbell/core": "^4.1",
|
2015-10-07 14:20:28 +01:00
|
|
|
"graham-campbell/markdown": "^5.1",
|
2015-10-07 14:21:15 +01:00
|
|
|
"graham-campbell/throttle": "^5.0",
|
2015-10-07 14:20:53 +01:00
|
|
|
"graham-campbell/exceptions": "^5.0",
|
2015-10-07 14:20:07 +01:00
|
|
|
"guzzlehttp/guzzle": "^6.1",
|
2015-05-28 21:37:44 +01:00
|
|
|
"jenssegers/date": "^3.0",
|
2015-10-07 14:42:39 +01:00
|
|
|
"mccool/laravel-auto-presenter": "^4.1",
|
2015-05-28 21:37:44 +01:00
|
|
|
"pragmarx/google2fa": "^0.5",
|
2015-08-03 22:32:36 +01:00
|
|
|
"roumen/feed": "^2.9"
|
2015-03-23 19:40:37 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2015-06-24 20:37:13 +01:00
|
|
|
"fzaninotto/faker": "^1.5",
|
2015-10-05 14:07:06 +01:00
|
|
|
"graham-campbell/testbench-core": "^1.0",
|
2015-07-25 13:24:05 +01:00
|
|
|
"mockery/mockery": "^0.9.4",
|
2015-10-28 22:31:59 +00:00
|
|
|
"phpunit/phpunit": "^4.8"
|
2015-03-23 19:40:37 +00:00
|
|
|
},
|
2015-03-23 19:44:30 +00:00
|
|
|
"autoload": {
|
2015-03-23 19:40:37 +00:00
|
|
|
"classmap": [
|
|
|
|
"database"
|
|
|
|
],
|
2015-01-24 21:01:06 +00:00
|
|
|
"files": [
|
2015-03-20 18:30:45 -06:00
|
|
|
"app/Http/helpers.php"
|
2015-01-24 21:01:06 +00:00
|
|
|
],
|
2015-03-23 19:40:37 +00:00
|
|
|
"psr-4": {
|
|
|
|
"CachetHQ\\Cachet\\": "app/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
2015-05-28 18:18:33 +01:00
|
|
|
"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"
|
2015-10-15 15:32:46 +02:00
|
|
|
],
|
|
|
|
"test": [
|
|
|
|
"phpunit"
|
2015-03-23 19:40:37 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"config": {
|
2015-10-02 11:45:39 +01:00
|
|
|
"platform": {
|
|
|
|
"php": "5.5.9"
|
|
|
|
},
|
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
|
|
|
}
|