From 63b8308f9c4c3cc81e633dfb58b1344d3737ae25 Mon Sep 17 00:00:00 2001 From: Corey McCormick Date: Mon, 4 Jul 2016 10:51:19 -0400 Subject: [PATCH] Fix a bug where the config file is not loaded correctly --- CHANGELOG.md | 3 +++ src/SMSServiceProvider.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 445325d..c1cb169 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/SMSServiceProvider.php b/src/SMSServiceProvider.php index 2e7bf80..0b0f095 100644 --- a/src/SMSServiceProvider.php +++ b/src/SMSServiceProvider.php @@ -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'), ]); }