diff --git a/src/config/api-core.php b/config/api-core.php similarity index 79% rename from src/config/api-core.php rename to config/api-core.php index ba3cf42..7a3cdb1 100644 --- a/src/config/api-core.php +++ b/config/api-core.php @@ -1,10 +1,12 @@ env('API_CORE_KEY', 'api_key') + 'api-key' => env('API_CORE_KEY', 'api_key'), ]; diff --git a/src/Auth/AuthServiceProvider.php b/src/Auth/AuthServiceProvider.php index a958d81..d41b9af 100644 --- a/src/Auth/AuthServiceProvider.php +++ b/src/Auth/AuthServiceProvider.php @@ -23,7 +23,7 @@ public function register() public function boot() { $this->publishes([ - __DIR__. '/config/api-core.php' => config_path('api-core.php'), + __DIR__ . '/../config/api-core.php' => config_path('api-core.php'), ]); } }