ajamaa / laravel-installer
Laravel package to install your website
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=8.1
README
This package is making installing your laravel app in the hosting much easy with some configurations.
benefits
-
Install the application
-
migrate the database
-
can seed any settings
-
verify purchase code
Look at the config file for more informations
Installation
You can install the package via composer:
composer require ajamaa/laravel-installer
Configurations
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
.
.
.
],
];
Security
If you discover any security-related issues, please email abderrahim@ajamaa.me instead of using the issue tracker.
Credits
License
The MIT License (MIT).