From 85c9c9329d792df3dbc15331a4b59d67991c7f57 Mon Sep 17 00:00:00 2001 From: Fahri Meral Date: Mon, 9 Jan 2023 02:55:36 +0300 Subject: [PATCH] Reformat: vendor publish rename `smartinstaller` php artisan vendor:publish --tag=smartinstaller --- src/Providers/LaravelInstallerServiceProvider.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Providers/LaravelInstallerServiceProvider.php b/src/Providers/LaravelInstallerServiceProvider.php index 86b9f44..9562b69 100755 --- a/src/Providers/LaravelInstallerServiceProvider.php +++ b/src/Providers/LaravelInstallerServiceProvider.php @@ -47,18 +47,18 @@ protected function publishFiles() { $this->publishes([ __DIR__.'/../Config/installer.php' => base_path('config/installer.php'), - ], 'laravelinstaller'); + ], 'smartinstaller'); $this->publishes([ __DIR__.'/../assets' => public_path('installer'), - ], 'laravelinstaller'); + ], 'smartinstaller'); $this->publishes([ __DIR__.'/../Views' => base_path('resources/views/vendor/installer'), - ], 'laravelinstaller'); + ], 'smartinstaller'); $this->publishes([ __DIR__.'/../Lang' => base_path('resources/lang'), - ], 'laravelinstaller'); + ], 'smartinstaller'); } }