Skip to content

Commit

Permalink
Added extra publish groups
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebarlow committed Nov 15, 2022
1 parent 2b132ff commit 6f8c9ba
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/MegaphoneServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,17 @@ public function boot()
__DIR__.'/../config/megaphone.php' => config_path('megaphone.php'),
__DIR__.'/../resources/views' => resource_path('views/vendor/megaphone'),
], 'megaphone');

$this->publishes([
__DIR__.'/../public' => public_path('vendor/megaphone'),
], 'megaphone-assets');

$this->publishes([
__DIR__.'/../config/megaphone.php' => config_path('megaphone.php'),
], 'megaphone-config');

$this->publishes([
__DIR__.'/../resources/views' => resource_path('views/vendor/megaphone'),
], 'megaphone-views');
}
}

0 comments on commit 6f8c9ba

Please sign in to comment.