Skip to content

Commit b5706d7

Browse files
authored
Merge pull request #15 from jijoel/master
Compatibility with Laravel 5.4
2 parents 17eb53f + d525cf4 commit b5706d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"license": "MIT",
66
"require": {
77
"php": ">=5.6.0",
8-
"illuminate/support": "5.0.x|5.1.x|5.2.x|5.3.x",
9-
"illuminate/console": "5.0.x|5.1.x|5.2.x|5.3.x",
10-
"illuminate/filesystem": "5.0.x|5.1.x|5.2.x|5.3.x",
8+
"illuminate/support": "^5.0",
9+
"illuminate/console": "^5.0",
10+
"illuminate/filesystem": "^5.0",
1111
"symfony/class-loader": "^2.3|3.*",
1212
"doctrine/dbal": "~2.3"
1313
},

src/TestFactoryHelperServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function boot()
3333
*/
3434
public function register()
3535
{
36-
$this->app['command.test-factory-helper.generate'] = $this->app->share(
36+
$this->app->bind('command.test-factory-helper.generate',
3737
function ($app) {
3838
return new GenerateCommand($app['files'], $app['view']);
3939
}

0 commit comments

Comments
 (0)