Skip to content

Commit f7d0e27

Browse files
authored
Cleanup readme
1 parent 1237890 commit f7d0e27

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

+3-4
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

0 commit comments

Comments
 (0)