appoets/laravel-setup-installer
Laravel 5.3 web installer
20
| Install | |
|---|---|
composer require appoets/laravel-setup-installer |
|
| License: | MIT |
| Last Updated: | Nov 18, 2016 |
| Links: | GitHub · Packagist |
Maintainer: yokesharun
Laravel Web Setup Installer
Laravel Setup Wizard for 5.3
The current features are :
- Check For Server Requirements.
- Check For Folders Permissions.
- Ability to set database information.
- Migrate The Database.
- Seed The Tables.
Installation
First, pull in the package through Composer.
composer require "appoets/laravel-setup-installer":"dev-master"
After that, include the service provider within config/app.php.
'providers' => [
Appoets\LaravelSetup\Providers\LaravelSetupServiceProvider::class,
];
Usage
Before using this package you need to run :
php artisan vendor:publish --provider="Appoets\LaravelSetup\Providers\LaravelSetupServiceProvider"