Skip to content
This repository has been archived by the owner on Feb 8, 2021. It is now read-only.

Commit

Permalink
Upgrade To Support Laravel 4.1
Browse files Browse the repository at this point in the history
NOTE: Laravel 4.0 support discontinued. Gotta love bleeding-edge eh!
Signed-off-by: David Thorpe <davzie@davzie.com>
  • Loading branch information
davzie committed Dec 16, 2013
1 parent 7c632fc commit adf423f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -9,7 +9,7 @@
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.0.x",
"illuminate/support": "4.1.x",
"intervention/image": "dev-master"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/BaseController.php
@@ -1,6 +1,6 @@
<?php
namespace Davzie\LaravelBootstrap\Controllers;
use Illuminate\Routing\Controllers\Controller;
use Illuminate\Routing\Controller;
use View, Config;

abstract class BaseController extends Controller{
Expand Down

1 comment on commit adf423f

@davzie
Copy link
Owner Author

@davzie davzie commented on adf423f Dec 16, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Closes #12

Please sign in to comment.