Skip to content

Commit

Permalink
Fix a bug where the config file is not loaded correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey McCormick committed Jul 4, 2016
1 parent 50905a7 commit 63b8308
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 @@ -3,6 +3,9 @@ Simple SMS

##Change Log

####3.0.1
* Fixed a bug where the config file was not being copied correctly.

####3.0.0
* Updated Readme

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

Expand Down

0 comments on commit 63b8308

Please sign in to comment.