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 765c32a commit 623bdaaCopy full SHA for 623bdaa
src/OxylabsApiServiceProvider.php
@@ -23,11 +23,12 @@ public function boot()
23
$this->publishes([
24
__DIR__.'/../config/oxylabs-api.php' => config_path('oxylabs-api.php'),
25
__DIR__.'/../config/data.php' => config_path('data.php'),
26
+ __DIR__.'/../config/request-logger.php' => config_path('request-logger.php'),
27
], 'config');
28
29
if (config('oxylabs-api.request_logging_enabled', true)) {
30
$this->publishesMigrations([
- __DIR__.'/../migrations/*' => database_path('migrations/'),
31
+ __DIR__.'/../database/migrations' => database_path('migrations/'),
32
]);
33
}
34
0 commit comments