Cachet/composer.json

104 lines
2.8 KiB
JSON
Raw Normal View History

2014-11-16 22:26:08 +00:00
{
"name": "cachethq/cachet",
2015-10-29 08:25:31 +00:00
"description": "An open source status page system, for everyone.",
"keywords": ["laravel", "cachet", "alt-three", "status", "page"],
2015-05-25 18:53:00 +01:00
"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-12-24 15:15:14 +00:00
"laravel/framework": "~5.1.28",
2015-11-14 15:11:02 +00:00
"alt-three/emoji": "^2.1",
"alt-three/validator": "^1.4",
2015-11-08 19:25:02 +00:00
"barryvdh/laravel-cors": "^0.7",
"doctrine/dbal": "^2.5",
2015-12-24 15:28:21 +00:00
"fideloper/proxy": "^3.1",
2015-11-14 15:11:02 +00:00
"graham-campbell/binput": "^3.3",
"graham-campbell/core": "^4.2",
"graham-campbell/markdown": "^5.3",
"graham-campbell/throttle": "^5.1",
2015-12-11 11:44:34 +00:00
"graham-campbell/exceptions": "^7.0",
2015-10-07 14:20:07 +01:00
"guzzlehttp/guzzle": "^6.1",
2015-12-15 15:12:57 +00:00
"jenssegers/date": "^3.1",
2015-11-14 15:11:02 +00:00
"mccool/laravel-auto-presenter": "^4.2",
2015-11-08 19:15:54 +00:00
"pragmarx/google2fa": "^0.7",
2015-11-20 10:22:12 +00:00
"rcrowe/twigbridge": "^0.9",
2015-12-15 15:12:57 +00:00
"roumen/feed": "^2.9.8"
2015-03-23 19:40:37 +00:00
},
"require-dev": {
2015-12-07 22:12:45 +00:00
"alt-three/testbench": "^1.1",
2015-11-22 20:06:29 +00:00
"filp/whoops": "^1.1",
2015-06-24 20:37:13 +01:00
"fzaninotto/faker": "^1.5",
2015-11-08 20:09:27 +00:00
"graham-campbell/testbench-core": "^1.1",
2015-12-11 11:34:21 +00:00
"mockery/mockery": "0.9.4",
2015-12-24 15:59:35 +00:00
"phpunit/phpunit": "4.8.21"
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-12-24 15:50:28 +00:00
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
],
"post-create-project-cmd": [
"php artisan key:generate"
2015-07-07 10:57:29 +01:00
],
2015-03-23 19:40:37 +00:00
"post-install-cmd": [
2015-12-24 15:50:28 +00:00
"php artisan clear-compiled",
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-12-24 15:50:28 +00:00
"php artisan clear-compiled"
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
]
},
"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-11-28 17:41:30 +00:00
"dev-master": "2.1-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
}