bdcoder / installer
This is a laravel installer. It help to run a project easily.
v1.0.4
2024-11-12 12:56 UTC
README
About
Using this package you can easily install your laravel project automatically in your server.
Requirements
Installation
- From your projects root folder in terminal run:
composer composer require bdcoder/installer
- Register the package
Register the package with laravel in bootstrap under providers.php with the following:
return [ ... Bdc\Installer\Providers\AppServiceProvider::class, ];
- Publish the packages views, config file, assets, and language files by running the following from your projects root folder:
php artisan vendor:publish --provider="Bdc\Installer\Providers\AppServiceProvider"