LaravelPackages.net
Acme Inc.
Toggle sidebar
ajamaa/laravel-installer

Laravel package to install your website

55
2
1.1.0
About ajamaa/laravel-installer

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

Laravel Installer Package

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 [email protected] instead of using the issue tracker.

Credits

Abderrahim Ajamaa

License

The MIT License (MIT).

Comments