mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-03-14 20:39:44 +01:00
Use 2 space formatting for JSON, seems to be a standard
This commit is contained in:
parent
db240a7e21
commit
0b6e10f04b
43
app.json
43
app.json
@ -1,23 +1,24 @@
|
||||
{
|
||||
"name": "Cachet",
|
||||
"description": "Single-site Status Page with Laravel",
|
||||
"keywords": [
|
||||
"status",
|
||||
"tools",
|
||||
"php",
|
||||
"laravel"
|
||||
],
|
||||
"website": "http://james-brooks.uk/cachet",
|
||||
"logo": "https://raw.githubusercontent.com/cachethq/assets/f7a350ccd2e7dbdb63f4a2e91bc48f02e03f97e4/images/logo/logo-final.png",
|
||||
"success_url": "/setup",
|
||||
"repository": "https://github.com/cachethq/Cachet",
|
||||
"keywords": ["cachet", "laravel", "status", "page"],
|
||||
"addons": ["cleardb"],
|
||||
"env": {
|
||||
"ENV": "heroku",
|
||||
"BUILDPACK_URL": "https://github.com/heroku/heroku-buildpack-php"
|
||||
},
|
||||
"scripts": {
|
||||
"postdeploy": "php artisan migrate; php artisan key:generate"
|
||||
}
|
||||
"name": "Cachet",
|
||||
"description": "Single-site Status Page with Laravel",
|
||||
"keywords": [
|
||||
"cachet",
|
||||
"laravel",
|
||||
"status",
|
||||
"page"
|
||||
],
|
||||
"website": "http://james-brooks.uk/cachet",
|
||||
"logo": "https://raw.githubusercontent.com/cachethq/assets/f7a350ccd2e7dbdb63f4a2e91bc48f02e03f97e4/images/logo/logo-final.png",
|
||||
"success_url": "/setup",
|
||||
"repository": "https://github.com/cachethq/Cachet",
|
||||
"addons": [
|
||||
"cleardb"
|
||||
],
|
||||
"env": {
|
||||
"ENV": "heroku",
|
||||
"BUILDPACK_URL": "https://github.com/heroku/heroku-buildpack-php"
|
||||
},
|
||||
"scripts": {
|
||||
"postdeploy": "php artisan migrate; php artisan key:generate"
|
||||
}
|
||||
}
|
||||
|
117
composer.json
117
composer.json
@ -1,59 +1,62 @@
|
||||
{
|
||||
"name": "laravel/laravel",
|
||||
"description": "The Laravel Framework.",
|
||||
"keywords": ["framework", "laravel"],
|
||||
"license": "MIT",
|
||||
"type": "project",
|
||||
"require": {
|
||||
"laravel/framework": "4.2.*",
|
||||
"guzzlehttp/guzzle": "~5.0",
|
||||
"dingo/api": "0.6.*",
|
||||
"watson/validating": "0.10.*",
|
||||
"thujohn/rss": "dev-master"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~4.3.0",
|
||||
"mockery/mockery": "0.9.*"
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"app/commands",
|
||||
"app/controllers",
|
||||
"app/models",
|
||||
"app/database/migrations",
|
||||
"app/database/seeds",
|
||||
"app/tests/TestCase.php",
|
||||
"app/filters"
|
||||
],
|
||||
"psr-4": {
|
||||
"CachetHQ\\": "app/CachetHq"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"heroku": {
|
||||
"framework": "silex",
|
||||
"document-root": "public",
|
||||
"index-document": "index.php",
|
||||
"log-files": [
|
||||
"app/storage/logs/laravel.log"
|
||||
]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"post-install-cmd": [
|
||||
"php artisan optimize",
|
||||
"chmod -R 777 app/storage public",
|
||||
"php artisan migrate"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"php artisan clear-compiled",
|
||||
"php artisan optimize"
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"php artisan key:generate"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"preferred-install": "dist"
|
||||
}
|
||||
"name": "laravel/laravel",
|
||||
"description": "The Laravel Framework.",
|
||||
"keywords": [
|
||||
"framework",
|
||||
"laravel"
|
||||
],
|
||||
"license": "MIT",
|
||||
"type": "project",
|
||||
"require": {
|
||||
"laravel/framework": "4.2.*",
|
||||
"guzzlehttp/guzzle": "~5.0",
|
||||
"dingo/api": "0.6.*",
|
||||
"watson/validating": "0.10.*",
|
||||
"thujohn/rss": "dev-master"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~4.3.0",
|
||||
"mockery/mockery": "0.9.*"
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"app/commands",
|
||||
"app/controllers",
|
||||
"app/models",
|
||||
"app/database/migrations",
|
||||
"app/database/seeds",
|
||||
"app/tests/TestCase.php",
|
||||
"app/filters"
|
||||
],
|
||||
"psr-4": {
|
||||
"CachetHQ\\": "app/CachetHq"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"heroku": {
|
||||
"framework": "silex",
|
||||
"document-root": "public",
|
||||
"index-document": "index.php",
|
||||
"log-files": [
|
||||
"app/storage/logs/laravel.log"
|
||||
]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"post-install-cmd": [
|
||||
"php artisan optimize",
|
||||
"chmod -R 777 app/storage public",
|
||||
"php artisan migrate"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"php artisan clear-compiled",
|
||||
"php artisan optimize"
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"php artisan key:generate"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"preferred-install": "dist"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"devDependencies": {
|
||||
"gulp": "^3.8.8",
|
||||
"laravel-elixir": "*"
|
||||
}
|
||||
"devDependencies": {
|
||||
"gulp": "^3.8.8",
|
||||
"laravel-elixir": "*"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user