Skip to content

Commit c84f90e

Browse files
committed
fix publish paths
1 parent 2d03eb4 commit c84f90e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Providers/DevLoggerServiceProvider.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function register(): void
1515
{
1616
// Merge package configuration
1717
$this->mergeConfigFrom(
18-
__DIR__ . '/../../config/devlogger.php',
18+
__DIR__ . '/../../../config/devlogger.php',
1919
'devlogger'
2020
);
2121

@@ -32,13 +32,13 @@ public function boot(): void
3232
{
3333
// Publish configuration
3434
$this->publishes([
35-
__DIR__ . '/../../config/devlogger.php' => config_path('devlogger.php'),
35+
__DIR__ . '/../../../config/devlogger.php' => config_path('devlogger.php'),
3636
], 'devlogger-config');
3737

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

4444
// Register commands
@@ -48,7 +48,7 @@ public function boot(): void
4848
}
4949

5050
// Load migrations
51-
$this->loadMigrationsFrom(__DIR__ . '/../../migrations');
51+
$this->loadMigrationsFrom(__DIR__ . '/../../../migrations');
5252

5353
// Schedule cleanup if retention is configured
5454
if (config('devlogger.retention_days')) {

0 commit comments

Comments
 (0)