Skip to content

Cleanup readme #5

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 1 commit into from
May 5, 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
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