Skip to content

Commit 0999044

Browse files
authored
Fix DevLogger package publishing and migration issues
1 parent 0eae9c5 commit 0999044

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Providers/DevLoggerServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ public function boot(): void
3333
// Publish configuration
3434
$this->publishes([
3535
__DIR__ . '/../../config/devlogger.php' => config_path('devlogger.php'),
36-
], 'devlogger-config');
36+
], ['devlogger-config', 'devlogger']);
3737

3838
// Publish migrations
3939
if ($this->app->runningInConsole()) {
4040
$this->publishes([
4141
__DIR__ . '/../../migrations/' => database_path('migrations'),
42-
], 'devlogger-migrations');
42+
], ['devlogger-migrations', 'devlogger']);
4343

4444
// Register commands
4545
$this->commands([

0 commit comments

Comments
 (0)