appoets / laravel-setup-installer by yokesharun

Laravel 5.3 web installer
20
0
2
Package Data
Maintainer Username: yokesharun
Maintainer Contact: ayokesh.cse@gmail.com (ayokesh)
Package Create Date: 2016-11-17
Package Last Update: 2016-11-18
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:06:45
Package Statistics
Total Downloads: 20
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

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"