ajamaa/laravel-installer is a Laravel package for laravel package to install your website.
It currently has 2 GitHub stars and 55 downloads on Packagist (latest version 1.1.0).
Install it with composer require ajamaa/laravel-installer.
Discover more Laravel packages by ajamaa
or browse all Laravel packages to compare alternatives.
Last updated
This package is making installing your laravel app in the hosting much easy with some configurations.
Install the application
migrate the database
can seed any settings
verify purchase code
Look at the config file for more informations
You can install the package via composer:
composer require ajamaa/laravel-installer
php artisan vendor:publish --tag=laravelinstaller
add the middleware to web list middlewareGroups in Kernel.php file
/**
* The application's route middleware groups.
*
* @var array<string, array<int, class-string|string>>
*/
protected $middlewareGroups = [
'web' => [
\Ajamaa\LaravelInstaller\Middlewares\LaravelInstallerMiddleware::class
.
.
.
],
];
If you discover any security-related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT).