ajamaa/laravel-installer

Laravel package to install your website

v1.0.0 2024-01-23 15:03 UTC

This package is auto-updated.

Last update: 2025-06-13 21:04:25 UTC


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

Abderrahim Ajamaa

License

The MIT License (MIT).