Cachet/composer.json

91 lines
2.4 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",
"alt-three/segment": "^1.0",
"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",
"graham-campbell/markdown": "^3.2",
"graham-campbell/throttle": "^4.1",
"graham-campbell/exceptions": "^3.1",
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",
"graham-campbell/testbench-core": "^1.0",
"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": {
"post-install-cmd": [
"php artisan clear-compiled",
2015-07-05 11:51:41 +01:00
"php artisan optimize --force",
"php artisan config:cache",
"chmod -R 755 storage"
2015-03-23 19:40:37 +00:00
],
2015-05-28 15:18:22 +01:00
"pre-update-cmd": [
"php artisan clear-compiled"
],
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-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": {
2015-05-25 18:02:04 +01:00
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
2015-05-23 10:48:10 +01:00
},
"minimum-stability": "dev",
"prefer-stable": true
2014-11-16 22:26:08 +00:00
}