diff --git a/src/Accounts/Providers/BitinflowAccountsServiceProvider.php b/src/Accounts/Providers/BitinflowAccountsServiceProvider.php index f14f12e..c8fc70a 100644 --- a/src/Accounts/Providers/BitinflowAccountsServiceProvider.php +++ b/src/Accounts/Providers/BitinflowAccountsServiceProvider.php @@ -23,7 +23,7 @@ class BitinflowAccountsServiceProvider extends ServiceProvider public function boot() { $this->publishes([ - dirname(__DIR__, 4) . '/config/bitinflow-accounts.php' => config_path('bitinflow-accounts.php'), + dirname(__DIR__, 3) . '/config/bitinflow-accounts.php' => config_path('bitinflow-accounts.php'), ], 'config'); } @@ -34,7 +34,7 @@ class BitinflowAccountsServiceProvider extends ServiceProvider */ public function register() { - $this->mergeConfigFrom(dirname(__DIR__, 4) . '/config/bitinflow-accounts.php', 'bitinflow-accounts'); + $this->mergeConfigFrom(dirname(__DIR__, 3) . '/config/bitinflow-accounts.php', 'bitinflow-accounts'); $this->app->singleton(BitinflowAccounts::class, function () { return new BitinflowAccounts; });