File tree Expand file tree Collapse file tree 4 files changed +106
-110
lines changed Expand file tree Collapse file tree 4 files changed +106
-110
lines changed Original file line number Diff line number Diff line change 1
1
nbproject
2
2
.AppleDouble
3
+ /.idea
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
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " coderan/laravel-data-migrations" ,
3
3
"description" : " An extension to allow you to separate data migrations from structure migrations" ,
4
+ "version" : " 1.1.0" ,
4
5
"license" : " MIT" ,
5
6
"authors" : [{
6
7
"name" : " Jose Lorente" ,
11
12
}],
12
13
"require" : {
13
14
"php" : " ^7.4|^8.0" ,
14
- "illuminate/support" : " ^8.0" ,
15
- "illuminate/database" : " ^8.0"
15
+ "illuminate/support" : " ^8.0|^9.0 " ,
16
+ "illuminate/database" : " ^8.0|^9.0 "
16
17
},
17
18
"autoload" : {
18
19
"psr-4" : {
You can’t perform that action at this time.
0 commit comments