From 62feac600923dacab438e4475f84fb69e1424b25 Mon Sep 17 00:00:00 2001 From: Colin Hall Date: Mon, 6 Apr 2020 15:56:43 +0100 Subject: [PATCH] Change vendor tags for easier selection --- src/Providers/SettingServiceProvider.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Providers/SettingServiceProvider.php b/src/Providers/SettingServiceProvider.php index fb5815a..98f892a 100644 --- a/src/Providers/SettingServiceProvider.php +++ b/src/Providers/SettingServiceProvider.php @@ -22,9 +22,9 @@ public function boot() $this->publishes([ __DIR__.'/../../config/setting.php' => config_path('setting.php'), - ], 'config'); + ], 'setting-config'); - $this->publishes($this->getMigrationStubs(), 'migrations'); + $this->publishes($this->getMigrationStubs(), 'setting-migrations'); } $this->registerModelBindings();