#80: Updated Laravel to 5.5 LTS

This commit is contained in:
Andy Heathershaw 2018-07-16 03:51:59 +01:00
parent 9a65e8f1c9
commit cd2dcc22a2
5 changed files with 1073 additions and 688 deletions

View File

@ -36,5 +36,6 @@ class Kernel extends ConsoleKernel
protected function commands() protected function commands()
{ {
require base_path('routes/console.php'); require base_path('routes/console.php');
$this->load(__DIR__.'/Commands');
} }
} }

View File

@ -60,7 +60,7 @@ class InstallController extends Controller
} }
$canContinue = true; $canContinue = true;
$runtimeMinimum = '5.6.4'; // this minimum is imposed by Laravel 5.3 $runtimeMinimum = '7.0.0'; // this minimum is imposed by Laravel 5.5
$runtimeVersion = phpversion(); $runtimeVersion = phpversion();
$phpIsValid = version_compare($runtimeVersion, $runtimeMinimum) >= 0; $phpIsValid = version_compare($runtimeVersion, $runtimeMinimum) >= 0;

View File

@ -5,16 +5,17 @@
"license": "MIT", "license": "MIT",
"type": "project", "type": "project",
"require": { "require": {
"php": ">=5.6.4", "php": ">=7.0.0",
"laravel/framework": "5.4.*", "laravel/framework": "5.5.*",
"rackspace/php-opencloud": "^1.16", "rackspace/php-opencloud": "^1.16",
"doctrine/dbal": "^2.5", "doctrine/dbal": "^2.5",
"aws/aws-sdk-php": "^3.19" "aws/aws-sdk-php": "^3.19"
}, },
"require-dev": { "require-dev": {
"filp/whoops": "~2.0",
"fzaninotto/faker": "~1.4", "fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*", "mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.0", "phpunit/phpunit": "~6.0",
"symfony/css-selector": "3.1.*", "symfony/css-selector": "3.1.*",
"symfony/dom-crawler": "3.1.*" "symfony/dom-crawler": "3.1.*"
}, },
@ -44,6 +45,10 @@
"post-update-cmd": [ "post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate", "Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize" "php artisan optimize"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
] ]
}, },
"config": { "config": {

1745
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
return [ return [
// Version number of Blue Twilight // Version number of Blue Twilight
'version' => '2.1.1', 'version' => '2.2.0-alpha.1',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------