Skip to content

Commit 54ebc94

Browse files
committed
Update readme #14
1 parent fe7682a commit 54ebc94

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Trait for Laravel Eloquent models to allow easy implementation of a "like" or "f
1212

1313
#### Composer Install (for Laravel 5)
1414

15-
composer require rtconner/laravel-likeable "~1.1"
15+
composer require rtconner/laravel-likeable "~1.2"
1616

1717
#### Install and then run the migrations
1818

@@ -23,7 +23,7 @@ Trait for Laravel Eloquent models to allow easy implementation of a "like" or "f
2323
```
2424

2525
```bash
26-
php artisan vendor:publish --provider="Conner\Likeable\LikeableServiceProvider"
26+
php artisan vendor:publish --provider="Conner\Likeable\LikeableServiceProvider" --tag=migrations
2727
php artisan migrate
2828
```
2929

src/LikeableServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ class LikeableServiceProvider extends ServiceProvider
1414
public function boot()
1515
{
1616
$this->publishes([
17-
__DIR__.'/../migrations/' => database_path('migrations')
18-
], 'migrations');
17+
__DIR__.'/../migrations/' => database_path('migrations')
18+
], 'migrations');
1919
}
2020

2121
public function register() {}

0 commit comments

Comments
 (0)