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 0eae9c5 commit 0999044Copy full SHA for 0999044
src/Providers/DevLoggerServiceProvider.php
@@ -33,13 +33,13 @@ public function boot(): void
33
// Publish configuration
34
$this->publishes([
35
__DIR__ . '/../../config/devlogger.php' => config_path('devlogger.php'),
36
- ], 'devlogger-config');
+ ], ['devlogger-config', 'devlogger']);
37
38
// Publish migrations
39
if ($this->app->runningInConsole()) {
40
41
__DIR__ . '/../../migrations/' => database_path('migrations'),
42
- ], 'devlogger-migrations');
+ ], ['devlogger-migrations', 'devlogger']);
43
44
// Register commands
45
$this->commands([
0 commit comments