Skip to content

1.0.1 #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ The preferred way to install this extension is through [composer](http://getcomp
With Composer installed, you can then install the extension using the following commands:

```bash
$ php composer.phar require jlorente/laravel-data-migrations
$ php composer.phar require coderan/laravel-data-migrations
```

or add

```json
...
"require": {
"jlorente/laravel-data-migrations": "*"
"coderan/laravel-data-migrations": "*"
}
```

Expand All @@ -33,7 +33,7 @@ return [
//other stuff
'providers' => [
//other stuff
\Jlorente\DataMigrations\DataMigrationsServiceProvider::class,
\Coderan\DataMigrations\DataMigrationsServiceProvider::class,
];
];
```
Expand Down Expand Up @@ -73,6 +73,6 @@ php artisan migrate-data:rollback [--path=]
The behavior of the migrations is the same as the regular migrations.

## License
Copyright &copy; 2018 José Lorente Martín <jose.lorente.martin@gmail.com>.
Copyright &copy; 2021 José Lorente Martín <jose.lorente.martin@gmail.com>, Eran Machiels <dev@eranmachiels.nl>.

Licensed under the MIT license. See LICENSE.txt for details.