Skip to content

Commit

Permalink
[6.x] Fix config not publishing for Laravel Breeze (#368)
Browse files Browse the repository at this point in the history
Removed an additional .php preventing config files from being published.
  • Loading branch information
Supernova3339 authored Aug 6, 2024
1 parent 10728b6 commit d115bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SocialstreamServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand Down

0 comments on commit d115bc8

Please sign in to comment.