appoets / default-installer
Laravel 5.3 web installer
Installs: 378
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/appoets/default-installer
This package is not auto-updated.
Last update: 2025-10-09 08:47:28 UTC
README
This Setup wizard will help to install the laravel application in your system and No Coding knowledge just need to click the installa button
The current features are :
- It will Check For Server Requirements.
- It will Check For Folders Permissions.
- Has the Ability to set database information.
- It will Migrate The Database.
- It will Seed The Tables.
- Finally it will redirect to home page
Installation
First, pull in the package through Composer.
composer require "appoets/default-installer":"dev-master"
After that, include the service provider within config/app.php
.
'providers' => [
Appoets\DefaultInstaller\Providers\DefaultInstallerServiceProvider::class,
];
Usage
Before using this package you need to run this command to publish the vendor files :
php artisan vendor:publish --provider="Appoets\DefaultInstaller\Providers\DefaultInstallerServiceProvider"
Happy Coding :)