Skip to content

Commit 63b8308

Browse files
author
Corey McCormick
committed
Fix a bug where the config file is not loaded correctly
1 parent 50905a7 commit 63b8308

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Simple SMS
33

44
##Change Log
55

6+
####3.0.1
7+
* Fixed a bug where the config file was not being copied correctly.
8+
69
####3.0.0
710
* Updated Readme
811

src/SMSServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class SMSServiceProvider extends ServiceProvider
1818
public function boot()
1919
{
2020
$this->publishes([
21-
__DIR__.'/../../config/sms.php' => config_path('sms.php'),
21+
__DIR__.'/config/sms.php' => config_path('sms.php'),
2222
]);
2323
}
2424

0 commit comments

Comments
 (0)