Skip to content

Release/1.1.0 #8

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 7 commits into from
Feb 24, 2022
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
nbproject
.AppleDouble
/.idea
7 changes: 3 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 coderan/laravel-data-migrations
composer require coderan/laravel-data-migrations
```

or add

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

Expand All @@ -32,7 +32,6 @@ config/app.php
return [
//other stuff
'providers' => [
//other stuff
\Coderan\DataMigrations\DataMigrationsServiceProvider::class,
];
];
Expand All @@ -58,7 +57,7 @@ The available commands of the package are:
```shell
php artisan make:data-migration [name] [--path=]
```
The firts time you use it the data migrations table will be created.
The first time you use it the data migrations table will be created.

*Run migration command*
```shell
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "coderan/laravel-data-migrations",
"description": "An extension to allow you to separate data migrations from structure migrations",
"version": "1.1.0",
"license": "MIT",
"authors": [{
"name": "Jose Lorente",
Expand All @@ -11,8 +12,8 @@
}],
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^8.0",
"illuminate/database": "^8.0"
"illuminate/support": "^8.0|^9.0",
"illuminate/database": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading