From f3090918634bac30cdaedba521cde42bee804be5 Mon Sep 17 00:00:00 2001 From: Dieter Coopman Date: Thu, 21 Apr 2022 13:51:40 +0200 Subject: [PATCH] fix publishing of config --- src/ShowsqlServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShowsqlServiceProvider.php b/src/ShowsqlServiceProvider.php index 0bb3313..0f2151e 100644 --- a/src/ShowsqlServiceProvider.php +++ b/src/ShowsqlServiceProvider.php @@ -11,7 +11,7 @@ public function boot(): void { $this->publishes([ __DIR__ . '/../config/showsql.php' => config_path('showsql.php'), - ]); + ], 'smart-config'); Builder::macro('showSql', function ($callback = null) { $showSql = new ShowSql($this, $callback);