We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c30680 commit 356ab16Copy full SHA for 356ab16
src/OtpiqServiceProvider.php
@@ -8,7 +8,7 @@ class OtpiqServiceProvider extends ServiceProvider
8
public function register()
9
{
10
$this->mergeConfigFrom(
11
- __DIR__ . '/../../config/otpiq.php', 'otpiq'
+ __DIR__ . '/../config/otpiq.php', 'otpiq'
12
);
13
$this->app->singleton(OtpiqService::class, function ($app) {
14
return new OtpiqService(config('otpiq.api_key'), config('otpiq.base_url'));
@@ -18,7 +18,7 @@ public function register()
18
public function boot()
19
20
$this->publishes([
21
- __DIR__ . '/config/otpiq.php' => config_path('otpiq.php'),
+ __DIR__ . '/../config/otpiq.php' => config_path('otpiq.php'),
22
], 'otpiq-config');
23
}
24
0 commit comments