appoets/laravel-setup-installer is a Laravel package for laravel 5.3 web installer.
It currently has 0 GitHub stars and 20 downloads on Packagist.
Install it with composer require appoets/laravel-setup-installer.
Discover more Laravel packages by appoets
or browse all Laravel packages to compare alternatives.
Last updated
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.
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,
];
Before using this package you need to run :
php artisan vendor:publish --provider="Appoets\LaravelSetup\Providers\LaravelSetupServiceProvider"