From b4fb6aa90f00bf94136787b5098b92ae0a49a82d Mon Sep 17 00:00:00 2001 From: David Carr Date: Sat, 16 Nov 2024 20:59:16 +0000 Subject: [PATCH] set config as the tag --- src/Commands/stubs/scaffold/provider.stub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/stubs/scaffold/provider.stub b/src/Commands/stubs/scaffold/provider.stub index 0a6e9a8a..c451e30a 100644 --- a/src/Commands/stubs/scaffold/provider.stub +++ b/src/Commands/stubs/scaffold/provider.stub @@ -90,7 +90,7 @@ class $CLASS$ extends ServiceProvider $configKey = $this->nameLower . '.' . str_replace([DIRECTORY_SEPARATOR, '.php'], ['.', ''], $relativePath); $key = ($relativePath === 'config.php') ? $this->nameLower : $configKey; - $this->publishes([$file->getPathname() => config_path($relativePath)], $configPath); + $this->publishes([$file->getPathname() => config_path($relativePath)], 'config'); $this->mergeConfigFrom($file->getPathname(), $key); } }