Skip to content

Commit 623bdaa

Browse files
committed
Added missing publishes
1 parent 765c32a commit 623bdaa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/OxylabsApiServiceProvider.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@ public function boot()
2323
$this->publishes([
2424
__DIR__.'/../config/oxylabs-api.php' => config_path('oxylabs-api.php'),
2525
__DIR__.'/../config/data.php' => config_path('data.php'),
26+
__DIR__.'/../config/request-logger.php' => config_path('request-logger.php'),
2627
], 'config');
2728

2829
if (config('oxylabs-api.request_logging_enabled', true)) {
2930
$this->publishesMigrations([
30-
__DIR__.'/../migrations/*' => database_path('migrations/'),
31+
__DIR__.'/../database/migrations' => database_path('migrations/'),
3132
]);
3233
}
3334
}

0 commit comments

Comments
 (0)