mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
78 lines
1.9 KiB
JSON
78 lines
1.9 KiB
JSON
{
|
|
"name": "cachethq/cachet",
|
|
"description": "Open Source StatusPage.io alternative written in PHP.",
|
|
"keywords": [
|
|
"status page",
|
|
"status",
|
|
"board"
|
|
],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=5.4",
|
|
"ext-mcrypt": "*",
|
|
"ext-openssl": "*",
|
|
"laravel/framework": "4.2.*",
|
|
"dingo/api": "0.8.*",
|
|
"doctrine/dbal": "2.5.*",
|
|
"graham-campbell/binput": "~2.1",
|
|
"graham-campbell/markdown": "~2.0",
|
|
"graham-campbell/throttle": "~2.0",
|
|
"guzzlehttp/guzzle": "~5.0",
|
|
"roumen/feed": "~2.8",
|
|
"thujohn/rss": "~1.0",
|
|
"watson/validating": "0.10.*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.3",
|
|
"mockery/mockery": "0.9.*"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"app/database/migrations",
|
|
"app/database/seeds"
|
|
],
|
|
"files": [
|
|
"src/helpers.php"
|
|
],
|
|
"psr-4": {
|
|
"CachetHQ\\Cachet\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/TestCase.php"
|
|
]
|
|
},
|
|
"extra": {
|
|
"paas": {
|
|
"document-root": "public",
|
|
"index-document": "index.php",
|
|
"log-files": [
|
|
"app/storage/logs/laravel.log"
|
|
],
|
|
"compile": [
|
|
"bower install",
|
|
"gulp"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"php artisan optimize",
|
|
"chmod -R 777 app/storage public",
|
|
"php artisan cachet:one-click-deploy"
|
|
],
|
|
"post-update-cmd": [
|
|
"php artisan clear-compiled",
|
|
"php artisan optimize"
|
|
],
|
|
"post-create-project-cmd": [
|
|
"php artisan key:generate"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist"
|
|
}
|
|
}
|