Looking to hire Laravel developers? Try LaraJobs

laravel-setup-installer maintained by appoets

Description
Laravel 5.3 web installer
Author
Last update
2016/11/18 13:11 (dev-master)
License
Links
Downloads
20

Comments
comments powered by Disqus

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"