Skip to content

Commit 51784c1

Browse files
authoredFeb 24, 2022
Merge pull request #8 from coderan-io/release/1.1.0
Release/1.1.0
2 parents 1237890 + a5ccee2 commit 51784c1

File tree

4 files changed

+106
-110
lines changed

4 files changed

+106
-110
lines changed
 

‎.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
nbproject
22
.AppleDouble
3+
/.idea

‎README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ The preferred way to install this extension is through [composer](http://getcomp
99
With Composer installed, you can then install the extension using the following commands:
1010

1111
```bash
12-
$ php composer.phar require coderan/laravel-data-migrations
12+
composer require coderan/laravel-data-migrations
1313
```
1414

1515
or add
1616

1717
```json
1818
...
1919
"require": {
20-
"coderan/laravel-data-migrations": "*"
20+
"coderan/laravel-data-migrations": "^1.0"
2121
}
2222
```
2323

@@ -32,7 +32,6 @@ config/app.php
3232
return [
3333
//other stuff
3434
'providers' => [
35-
//other stuff
3635
\Coderan\DataMigrations\DataMigrationsServiceProvider::class,
3736
];
3837
];
@@ -58,7 +57,7 @@ The available commands of the package are:
5857
```shell
5958
php artisan make:data-migration [name] [--path=]
6059
```
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.
6261

6362
*Run migration command*
6463
```shell

‎composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "coderan/laravel-data-migrations",
33
"description": "An extension to allow you to separate data migrations from structure migrations",
4+
"version": "1.1.0",
45
"license": "MIT",
56
"authors": [{
67
"name": "Jose Lorente",
@@ -11,8 +12,8 @@
1112
}],
1213
"require": {
1314
"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"
1617
},
1718
"autoload": {
1819
"psr-4": {

‎composer.lock

Lines changed: 99 additions & 104 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.