File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ The preferred way to install this extension is through [composer](http://getcomp
9
9
With Composer installed, you can then install the extension using the following commands:
10
10
11
11
``` bash
12
- $ php composer.phar require coderan/laravel-data-migrations
12
+ composer require coderan/laravel-data-migrations
13
13
```
14
14
15
15
or add
16
16
17
17
``` json
18
18
...
19
19
"require" : {
20
- "coderan/laravel-data-migrations" : " * "
20
+ "coderan/laravel-data-migrations" : " ^1.0 "
21
21
}
22
22
```
23
23
@@ -32,7 +32,6 @@ config/app.php
32
32
return [
33
33
//other stuff
34
34
'providers' => [
35
- //other stuff
36
35
\Coderan\DataMigrations\DataMigrationsServiceProvider::class,
37
36
];
38
37
];
@@ -58,7 +57,7 @@ The available commands of the package are:
58
57
``` shell
59
58
php artisan make:data-migration [name] [--path= ]
60
59
```
61
- The firts time you use it the data migrations table will be created.
60
+ The first time you use it the data migrations table will be created.
62
61
63
62
* Run migration command*
64
63
``` shell
You can’t perform that action at this time.
0 commit comments