Skip to content

Commit

Permalink
Reformat: vendor publish rename smartinstaller
Browse files Browse the repository at this point in the history
php artisan vendor:publish --tag=smartinstaller
  • Loading branch information
Fahri Meral committed Jan 8, 2023
1 parent c4715f6 commit 85c9c93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Providers/LaravelInstallerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

0 comments on commit 85c9c93

Please sign in to comment.