composer.json
to require "laravel/framework": "4.1.*"
redirectIfTrailingSlash
in /bootstrap/start.php
file./public/index.php
with this file, and /artisan
with this file.app/config/remote.php
file from hereexpire_on_close
and secure
options to session
configuration file to match this file.failed
queue job option to queue
configuration file to match this file.app/config/database.php
and update redis.cluster
option to false
to turn Redis clustering off by default.app/config/view.php
and update pagination
option to use bootstrap 3 as default pagination view (optional).app/config/app.php
so the aliases
and providers
array match this file:
aliases
change 'Controller' => 'Illuminate\Routing\Controllers\Controller',
to use Illuminate\Routing\Controller
.providers
add 'Illuminate\Remote\RemoteServiceProvider',
.aliases
add 'SSH' => 'Illuminate\Support\Facades\SSH',
.app/controllers/BaseController.php
has a use statement at the top, change use Illuminate\Routing\Controllers\Controller;
to use Illuminate\Routing\Controller;
. You may also remove this use statament, for you have registered a class alias for this.missingMethod
in your controllers, add $method as the first parameter.auth:reminders-controller
Artisan command.reminders.php
language file to match this file.Finally,
composer update