appoets/laravel-setup-installer

Laravel 5.3 web installer

dev-master 2016-11-18 12:11 UTC

This package is not auto-updated.

Last update: 2024-03-16 23:52:29 UTC


README

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"