Skip to content

Commit

Permalink
Update readme #14
Browse files Browse the repository at this point in the history
  • Loading branch information
rtconner committed Feb 7, 2016
1 parent fe7682a commit 54ebc94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Trait for Laravel Eloquent models to allow easy implementation of a "like" or "f

#### Composer Install (for Laravel 5)

composer require rtconner/laravel-likeable "~1.1"
composer require rtconner/laravel-likeable "~1.2"

#### Install and then run the migrations

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

```bash
php artisan vendor:publish --provider="Conner\Likeable\LikeableServiceProvider"
php artisan vendor:publish --provider="Conner\Likeable\LikeableServiceProvider" --tag=migrations
php artisan migrate
```

Expand Down
4 changes: 2 additions & 2 deletions src/LikeableServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class LikeableServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/../migrations/' => database_path('migrations')
], 'migrations');
__DIR__.'/../migrations/' => database_path('migrations')
], 'migrations');
}

public function register() {}
Expand Down

0 comments on commit 54ebc94

Please sign in to comment.