shipu/web-installer

Laravel Web Installer
4,466 70
Install
composer require shipu/web-installer
Latest Version:v1.0.1
License:MIT
Last Updated:Jan 9, 2026
Links: GitHub  ·  Packagist
Maintainer: shipu

Laravel Web Installer

Laravel Web Installer is a Laravel package that allows you to install your application easily, without having to worry about setting up your environment before starting with the installation process.

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

Installation

composer require shipu/web-installer

then publish the assets

php artisan vendor:publish --tag=web-installer-assets

Screenshots

Server Requirements

Folder Permissions

Environment

Application Settings

Add New Step

You can add new step in installer. For this you have to create a new class and implement Shipu\WebInstaller\Concerns\StepContract class. Eg:

<?php

namespace Your\Namespace;

use Filament\Forms\Components\Wizard\Step;
use Shipu\WebInstaller\Concerns\StepContract;

class Overview implements StepContract
{
    public static function make(): Step
    {
        return Step::make('overview')
            ->label('Overview')
            ->schema([
             // Add Filament Fields Here
            ]);
    }
}

For Step documentation please visit Filament Forms

Then you have to add this class in config/installer.php Eg:

//...
'steps' => [
    Overview::class, // <-- Add Here
    //...
],
//...

Note: you have to publish config file first. More details in Configuration section.

Protect Routes

Protect other routes if not installed then you can apply the middleware to a route or route-group. Eg:

Route::group(['middleware' => 'redirect.if.not.installed'], function () {
    Route::get('/', function () {
        return view('welcome');
    });
});

In Filament, if you want to protect all admin panel routes then you have to add middleware in panel service provider. Eg:

public function panel(Panel $panel): Panel
{
    return $panel
        ...
        ->middleware([
            \Shipu\WebInstaller\Middleware\RedirectIfNotInstalled::class,
            ...
        ]);
}

Configuration

you can modify almost everything in this package. For this you have to publish the config file. Eg:

php artisan vendor:publish --tag=web-installer-config

Related Packages

doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

634,760,849 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444
laravel/serializable-closure

Laravel Serializable Closure provides an easy and secure way to serialize closur...

404,034,618 608
nunomaduro/collision

Cli error handling for console/command-line PHP applications.

387,976,821 4,658