bdcoder / installer
This is a laravel installer. It help to run a project easily.
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:CSS
pkg:composer/bdcoder/installer
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"