PHPackages                             olakunlevpn/laravel-installer - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. olakunlevpn/laravel-installer

ActiveLibrary

olakunlevpn/laravel-installer
=============================

A flexible, plugin-based Laravel installer package with great architecture

v4.0.0(2mo ago)233MITPHPPHP ^8.2

Since Dec 13Pushed 2mo agoCompare

[ Source](https://github.com/olakunlevpn/laravel-installer)[ Packagist](https://packagist.org/packages/olakunlevpn/laravel-installer)[ RSS](/packages/olakunlevpn-laravel-installer/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (6)Versions (3)Used By (3)

Laravel Application Installer Wizard
====================================

[](#laravel-application-installer-wizard)

[![Latest Version](https://camo.githubusercontent.com/1deb6ce451b8266bbb486e2770fd44fbb7baceff17b3d288156d410cf60ebb5f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f6c616b756e6c6576706e2f6c61726176656c2d696e7374616c6c65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/olakunlevpn/laravel-installer)[![Total Downloads](https://camo.githubusercontent.com/410ef82b83e3046d1d144195f44b8b0ce90c1163c6913f98f7fd77f1dfd7fb03/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f6c616b756e6c6576706e2f6c61726176656c2d696e7374616c6c65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/olakunlevpn/laravel-installer)

[![Logo](./installer.jpg)](./installer.jpg)

This is the core installer package that provides a plugin-based installation wizard for Laravel 11+ applications. Instead of manually editing `.env` files and running commands, your users click through a beautiful wizard that configures everything automatically.

To learn all about it, head over to [the extensive documentation](https://maylancer.org/docs/laravel-installer).

Here are a few short examples of what you can do:

```
// Configure your installation steps
'steps' => [
    \Olakunlevpn\Installer\Steps\RequirementsStep::class,
    \Olakunlevpn\Installer\Steps\PermissionsStep::class,
    \Olakunlevpn\Installer\Steps\EnvironmentStep::class,
    \Olakunlevpn\Installer\Steps\InstallingStep::class,
],
```

Customize validation requirements:

```
'requirements' => [
    'php' => '8.2',
    'extensions' => [
        'pdo', 'mbstring', 'openssl', 'curl'
    ],
],
```

Check specific folder permissions:

```
'permissions' => [
    'storage/framework/' => '775',
    'storage/logs/' => '775',
    'bootstrap/cache/' => '775',
],
```

The installer uses **Livewire 3/4** for reactive components and **Tailwind CSS** via CDN. Everything is dark mode ready out of the box.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require olakunlevpn/laravel-installer
```

Publish the configuration file:

```
php artisan vendor:publish --tag=laravel-installer-config
```

That's it! Visit `/install` in your browser to see the installation wizard.

You can find the full installation instructions in [our documentation](https://maylancer.org/docs/laravel-installer/installation).

Usage
-----

[](#usage)

The installer works out of the box with zero configuration. Simply visit `/install` to start the installation process.

### Creating Custom Steps

[](#creating-custom-steps)

Extend the installer with custom steps:

```
use Olakunlevpn\Installer\Steps\BaseStep;

class CustomStep extends BaseStep
{
    protected string $id = 'custom';
    protected string $title = 'Custom Configuration';
    protected int $sort = 25;

    public function render()
    {
        return view('custom-step');
    }
}
```

Add your custom step to the configuration:

```
'steps' => [
    // ... other steps
    \App\Installer\Steps\CustomStep::class,
],
```

Customization
-------------

[](#customization)

Publish views to customize the UI:

```
php artisan vendor:publish --tag=laravel-installer-views
```

Publish translations:

```
php artisan vendor:publish --tag=laravel-installer-translations
```

Learn more about customization in [the documentation](https://maylancer.org/docs/laravel-installer/customization).

Official Plugins
----------------

[](#official-plugins)

Extend the installer with official plugin packages:

- **[laravel-installer-welcome](https://github.com/olakunlevpn/laravel-installer-welcome)** - Customizable welcome screen with branding
- **[laravel-installer-license](https://github.com/olakunlevpn/laravel-installer-license)** - License verification via API
- **[laravel-installer-account](https://github.com/olakunlevpn/laravel-installer-account)** - Admin account creation

Documentation
-------------

[](#documentation)

You'll find the documentation on .

Find yourself stuck using the package? Found a bug? Do you have general questions or suggestions for improving the installer? Feel free to [create an issue on GitHub](https://github.com/olakunlevpn/laravel-installer/issues), we'll try to address it as soon as possible.

Testing
-------

[](#testing)

You can run the tests with:

```
composer test
```

Changelog
---------

[](#changelog)

Please see the main [CHANGELOG](../../CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](../../CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Olakunle](https://github.com/olakunlevpn)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](../../LICENSE.md) for more information.

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance84

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~68 days

Total

2

Last Release

82d ago

Major Versions

v1.0.0 → v4.0.02026-02-20

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/20794807?v=4)[Olakunlevpn](/maintainers/olakunlevpn)[@olakunlevpn](https://github.com/olakunlevpn)

---

Top Contributors

[![olakunlevpn](https://avatars.githubusercontent.com/u/20794807?v=4)](https://github.com/olakunlevpn "olakunlevpn (3 commits)")

---

Tags

laravelinstallerlivewiretailwindwizardsetup

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/olakunlevpn-laravel-installer/health.svg)

```
[![Health](https://phpackages.com/badges/olakunlevpn-laravel-installer/health.svg)](https://phpackages.com/packages/olakunlevpn-laravel-installer)
```

###  Alternatives

[spatie/livewire-filepond

Upload files using Filepond in Livewire components

306452.7k3](/packages/spatie-livewire-filepond)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

116.6k](/packages/tomshaw-electricgrid)[mwguerra/web-terminal

A web-based terminal component for Filament/Laravel with command whitelisting and multiple connection types

251.1k](/packages/mwguerra-web-terminal)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
