From 97cdaf2e2812f2ac2234b749bf0dcfabab274d25 Mon Sep 17 00:00:00 2001 From: Majid Alaeinia <11965368+majidalaeinia@users.noreply.github.com> Date: Mon, 5 May 2025 18:35:07 +0330 Subject: [PATCH 1/2] Update ServiceProvider.php --- src/Sentry/Laravel/ServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sentry/Laravel/ServiceProvider.php b/src/Sentry/Laravel/ServiceProvider.php index 4177e2b6..7308f544 100644 --- a/src/Sentry/Laravel/ServiceProvider.php +++ b/src/Sentry/Laravel/ServiceProvider.php @@ -107,7 +107,7 @@ public function boot(): void if ($this->app instanceof Laravel) { $this->publishes([ __DIR__ . '/../../../config/sentry.php' => config_path(static::$abstract . '.php'), - ], 'config'); + ], 'sentry-laravel.config'); } $this->registerArtisanCommands(); From a3298fdc0d6b3eb8feac89f095f7fd4aad40ef1e Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Sun, 11 May 2025 16:32:37 +0200 Subject: [PATCH 2/2] Update the publish group --- src/Sentry/Laravel/ServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sentry/Laravel/ServiceProvider.php b/src/Sentry/Laravel/ServiceProvider.php index 7308f544..f8aefe2e 100644 --- a/src/Sentry/Laravel/ServiceProvider.php +++ b/src/Sentry/Laravel/ServiceProvider.php @@ -107,7 +107,7 @@ public function boot(): void if ($this->app instanceof Laravel) { $this->publishes([ __DIR__ . '/../../../config/sentry.php' => config_path(static::$abstract . '.php'), - ], 'sentry-laravel.config'); + ], 'sentry-config'); } $this->registerArtisanCommands();