LaravelPackages.net
Acme Inc.
Toggle sidebar
appoets/laravel-setup-installer

Laravel 5.3 web installer

20
0
About appoets/laravel-setup-installer

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 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"
Comments