Skip to content

Commit

Permalink
Upgrade dependencies to 5.2.*
Browse files Browse the repository at this point in the history
  • Loading branch information
ghunti committed Feb 16, 2016
1 parent d0abb20 commit 20855cc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
}
],
"require": {
"php": ">=5.3.0",
"illuminate/contracts": "5.1.*",
"illuminate/database": "5.1.*",
"illuminate/http": "5.1.*",
"illuminate/routing": "5.1.*",
"illuminate/support": "5.1.*",
"illuminate/validation": "5.1.*"
"php": ">=5.5.9",
"illuminate/contracts": "5.2.*",
"illuminate/database": "5.2.*",
"illuminate/http": "5.2.*",
"illuminate/routing": "5.2.*",
"illuminate/support": "5.2.*",
"illuminate/validation": "5.2.*"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 1 addition & 2 deletions src/Middleware/ShareMessagesFromSession.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
namespace Ghunti\LaravelBase\Middleware;

use Closure;
use Illuminate\Contracts\Routing\Middleware;
use Illuminate\Support\MessageBag;
use Illuminate\Contracts\View\Factory as ViewFactory;

class ShareMessagesFromSession implements Middleware
class ShareMessagesFromSession
{
/* Create a new error binder instance.
*
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceProviders/LaravelBaseServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class LaravelBaseServiceProvider extends ServiceProvider
public function register()
{
//Override Laravel Redirect
$this->app->bindShared(
$this->app->singleton(
'redirect',
function ($app) {
$redirector = new Redirector($app->url);
Expand Down

0 comments on commit 20855cc

Please sign in to comment.