From d115bc82a4e15631faffcf512cbaf85e67ca8998 Mon Sep 17 00:00:00 2001 From: SuperDev <63515814+Supernova3339@users.noreply.github.com> Date: Tue, 6 Aug 2024 05:40:57 -0500 Subject: [PATCH] [6.x] Fix config not publishing for Laravel Breeze (#368) Removed an additional .php preventing config files from being published. --- src/SocialstreamServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SocialstreamServiceProvider.php b/src/SocialstreamServiceProvider.php index c145889..1ecb482 100644 --- a/src/SocialstreamServiceProvider.php +++ b/src/SocialstreamServiceProvider.php @@ -188,7 +188,7 @@ protected function bootLaravelBreeze(): void } $this->publishes([ - __DIR__.'/../config/socialstream.php.php' => config_path('socialstream.php'), + __DIR__.'/../config/socialstream.php' => config_path('socialstream.php'), ], 'socialstream-config'); $this->publishes([