Skip to content

Commit 3d2527f

Browse files
committed
Add config publishing
1 parent 940c589 commit 3d2527f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/JiraWebhooksLaravelServiceProvider.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ class JiraWebhooksLaravelServiceProvider extends ServiceProvider
88
{
99
public function boot(): void
1010
{
11+
$this->publishes([
12+
__DIR__ . '/../config/jira-webhooks.php' => config_path('jira-webhooks.php'),
13+
], 'jira-webhooks-config');
14+
1115
$this->mergeConfigFrom(__DIR__ . '/../config/jira-webhooks.php', 'jira-webhooks');
1216
}
1317
}

0 commit comments

Comments
 (0)