Cachet is now a Laravel 5 app

This commit is contained in:
Joseph Cohen
2015-03-20 18:30:45 -06:00
parent 7cfa158e68
commit b4ac66d727
338 changed files with 4164 additions and 4114 deletions

View File

@@ -8,75 +8,64 @@
],
"license": "BSD-3-Clause",
"type": "project",
"require": {
"require": {
"php": ">=5.4",
"ext-mbstring": "*",
"ext-mcrypt": "*",
"ext-openssl": "*",
"ext-apcu": "*",
"laravel/framework": "4.2.*",
"cachethq/segment": "1.0.*",
"dingo/api": "0.8.*",
"laravel/framework": "5.0.*",
"doctrine/dbal": "2.5.*",
"graham-campbell/binput": "2.1.*",
"graham-campbell/markdown": "~2.0.7",
"graham-campbell/throttle": "2.0.*",
"graham-campbell/binput": "~3.0",
"graham-campbell/markdown": "~3.0",
"graham-campbell/throttle": "~3.0",
"guzzlehttp/guzzle": "5.1.*",
"illuminate/html": "5.0.*",
"jenssegers/date": "2.0.*",
"mccool/laravel-auto-presenter": "2.2.*",
"mccool/laravel-auto-presenter": "~3.0",
"pragmarx/google2fa": "0.1.*",
"roumen/feed": "2.8.*",
"thujohn/rss": "1.0.*",
"watson/validating": "0.10.*",
"fideloper/proxy": "~2.0"
},
"require-dev": {
"roumen/feed": "~2.9",
"watson/validating": "~1.0",
"fideloper/proxy": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"mockery/mockery": "0.9.*"
},
"autoload": {
"classmap": [
"app/database/migrations",
"app/database/seeds"
],
},
"autoload": {
"classmap": [
"database"
],
"files": [
"src/helpers.php"
"app/Http/helpers.php"
],
"psr-4": {
"CachetHQ\\Cachet\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"heroku": {
"document-root": "public",
"index-document": "index.php",
"log-files": [
"app/storage/logs/laravel.log"
],
"nginx-includes": ["nginx.conf"]
}
},
"scripts": {
"post-install-cmd": [
"php artisan optimize",
"chmod -R 755 app/storage",
"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",
"php artisan cachet:one-click-deploy"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize",
"chmod -R 755 app/storage"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize",
"chmod -R 755 storage"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}