Cachet/composer.json

87 lines
2.3 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",
"email": "james@cachethq.io"
},
{
"name": "Graham Campbell",
"email": "graham@cachethq.io"
},
{
"name": "Joseph Cohen",
2015-05-25 17:53:06 +01:00
"email": "joe@cachethq.io"
2015-05-23 14:50:17 +01:00
}
],
2015-03-23 19:40:37 +00:00
"require": {
2015-05-25 18:53:00 +01:00
"php": ">=5.5.9",
2015-02-21 14:08:03 +00:00
"ext-apcu": "*",
2015-05-23 10:48:10 +01:00
"laravel/framework": "~5.0.32",
"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",
2015-05-23 14:57:37 +01:00
"jenssegers/date": "^2.0.21",
"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",
2015-05-23 14:51:07 +01:00
"barryvdh/laravel-cors": "^0.5"
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": {
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
}