Skip to content

Commit cae3481

Browse files
author
Nicolas Boisvert
committed
Update require
1 parent 1664868 commit cae3481

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
# Laravel DB Import
2+
### Laravel database import package for easy manipulations

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"keywords": ["laravel", "database", "import", "artisan"],
66
"license": "MIT",
77
"require": {
8-
"laravel/laravel": "^5"
8+
"illuminate/support": "5.1.x|5.2.x|5.3.x|5.4.x",
99
},
1010
"authors": [
1111
{

src/ServiceProvider.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Nicklayb\LaravelDbImport;
44

5-
use Nicklayb\LaravelDbImport\DbImport;
65
use Illuminate\Support\ServiceProvider as BaseProvider;
76

87
class ServiceProvider extends BaseProvider
@@ -35,7 +34,7 @@ public function register()
3534
{
3635
if ($this->app->runningInConsole()) {
3736
$this->commands([
38-
DbImport::class,
37+
ImportCommand::class,
3938
]);
4039
}
4140
}

0 commit comments

Comments
 (0)