From 7af3c83cd0ffa3db6d1a69558de31e311e930b49 Mon Sep 17 00:00:00 2001 From: bagulho Date: Wed, 21 Dec 2016 11:55:42 +0000 Subject: [PATCH] Update MotherboxServiceProvider.php config file path can't be acessed in linux. lower case is better --- src/MotherboxServiceProvider.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MotherboxServiceProvider.php b/src/MotherboxServiceProvider.php index c403472..f50bccb 100644 --- a/src/MotherboxServiceProvider.php +++ b/src/MotherboxServiceProvider.php @@ -15,7 +15,7 @@ public function boot() { // config $this->publishes([ - __DIR__.'/Config/motherbox.php' => config_path('motherbox.php') + __DIR__.'/config/motherbox.php' => config_path('motherbox.php') ], 'config'); // stubs @@ -32,7 +32,7 @@ public function boot() public function register() { // Merge config files - $this->mergeConfigFrom(__DIR__.'/Config/motherbox.php','motherbox'); + $this->mergeConfigFrom(__DIR__.'/config/motherbox.php','motherbox'); $this->commands( Commands\PackageCommand::class