Skip to content

Commit

Permalink
Merge 9f0c654 into ec095cf
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishalbert committed May 18, 2018
2 parents ec095cf + 9f0c654 commit 25525ed
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,23 @@ how long it ran for, or specific data with regards to nature of the migration it

## Installation -

1. Local/project installation:
1. Installation:

```
composer require-dev chrishalbert/laravel-nomadic
composer require chrishalbert/laravel-nomadic
```

or manually add it to the require-dev section of your composer file.

```json
{
"require" : {
"chrishalbert/laravel-nomadic": "*"
"chrishalbert/laravel-nomadic": "1.*"
}
}
```

2. Next, you will integrate into your application.
```
php artisan vendor:publish // Installs the nomadic.php config
```

3. Add the Service Provider to the config/app.php
2. Next, add the Service Provider to the config/app.php
```php
'providers' => [

Expand All @@ -48,6 +43,12 @@ php artisan vendor:publish // Installs the nomadic.php config
]
```

3. Lastly, publish some default configs into your application.
```
php artisan vendor:publish // Installs the nomadic.php config
```


## Nomadic Schema
* Use Case: A developer wants to track the migration's runtime.
* Use Case: A developer wants to know exactly when a migration started or ended.
Expand Down

0 comments on commit 25525ed

Please sign in to comment.