Skip to content

Commit

Permalink
fixed path to config
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Mar 29, 2016
1 parent 93ff35b commit 64e954d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All Notable changes to `laravel-authorize` will be documented in this file

## 1.1.1 - 2016-03-29
- Fixed a bug the prevented the config file from being published

## 1.1.0 - 2016-03-29
- Made the login route configurable

Expand Down
2 changes: 1 addition & 1 deletion src/AuthorizeServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AuthorizeServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/../resources/config/laravel-authorize.php' => config_path('laravel-authorize.php'),
__DIR__.'/../config/laravel-authorize.php' => config_path('laravel-authorize.php'),
]);
}

Expand Down

0 comments on commit 64e954d

Please sign in to comment.