Skip to content

Commit

Permalink
Fixed wrong config file in provider
Browse files Browse the repository at this point in the history
  • Loading branch information
tylercd100 committed Mar 13, 2018
1 parent 5ee4e1e commit bf4f3b7
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-licenser` will be documented in this file.

### 3.5.2
- Fixed wrong config file in provider

### 3.5.1
- Now publishes the config file

Expand Down
2 changes: 1 addition & 1 deletion src/Providers/LicenseServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LicenseServiceProvider extends ServiceProvider
*/
public function register()
{
$this->mergeConfigFrom(__DIR__.'/../config/pipe.php', 'pipe');
$this->mergeConfigFrom(__DIR__.'/../config/licenses.php', 'licenses');
}

/**
Expand Down

0 comments on commit bf4f3b7

Please sign in to comment.