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-11-16 15:03:12 |
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 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"