PHPackages                             getecz/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. [Utility &amp; Helpers](/categories/utility)
4. /
5. getecz/laravel-installer

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

getecz/laravel-installer
========================

Getecz Laravel Installer – lightweight installer wizard for Laravel 12 applications

v1.0.2(4mo ago)38153MITPHPPHP ^8.1

Since Dec 15Pushed 3mo ago1 watchersCompare

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

READMEChangelog (3)Dependencies (1)Versions (3)Used By (0)

Getecz Laravel Installer
========================

[](#getecz-laravel-installer)

[![](https://camo.githubusercontent.com/f77807977dc97a7f58f4d63cdcc2e6323cdd7e13768cb0d4c8dff4b5a83878c4/68747470733a2f2f692e706f7374696d672e63632f4d543548467332522f657a6769662d386566353266666464353231653335392e676966)](https://camo.githubusercontent.com/f77807977dc97a7f58f4d63cdcc2e6323cdd7e13768cb0d4c8dff4b5a83878c4/68747470733a2f2f692e706f7374696d672e63632f4d543548467332522f657a6769662d386566353266666464353231653335392e676966)

A lightweight installer wizard package for **Laravel 12** applications.

Features
--------

[](#features)

- Laravel 12 compatible
- Tailwind CDN installer UI (no build tools required)
- Server requirements check
- Database connection validation
- Writes `.env` from installer input
- Generates `APP_KEY`
- Runs migrations safely
- Creates admin user
- Locks installer after completion

Requirements
------------

[](#requirements)

- PHP 8.1+
- Laravel 12
- MySQL 5.7+ / MariaDB
- Writable: `storage/` and `bootstrap/cache/`

Install
-------

[](#install)

### 1) Require the package

[](#1-require-the-package)

```
composer require getecz/laravel-installer
```

### 2) (Optional) Publish config / views

[](#2-optional-publish-config--views)

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

### 3) Enable automatic redirect to installer (Laravel 12)

[](#3-enable-automatic-redirect-to-installer-laravel-12)

In **bootstrap/app.php** add the middleware to the `web` group:

```
use Getecz\Installer\Http\Middleware\RedirectIfNotInstalled;
use Illuminate\Foundation\Configuration\Middleware;

return Application::configure(basePath: dirname(__DIR__))
    ->withRouting(
        web: __DIR__.'/../routes/web.php',
    )
    ->withMiddleware(function (Middleware $middleware) {
        $middleware->appendToGroup('web', RedirectIfNotInstalled::class);
    })
    ->create();
```

> If you don't want auto-redirect, skip this step and manually visit `/install`.

Usage
-----

[](#usage)

1. Upload your Laravel project to your server.
2. Visit your site in a browser.
3. If the app is not installed, you will be redirected to `/install`.
4. Complete the steps.
5. After installation, the installer locks automatically using the installed file:
    - `storage/installed`

Configuration
-------------

[](#configuration)

Publish config (optional) and edit `config/installer.php`.

### Change post-install redirect

[](#change-post-install-redirect)

```
'redirect_after_install' => '/login'
```

### Change user model

[](#change-user-model)

```
'user_model' => \App\Models\User::class
```

### Map admin fields

[](#map-admin-fields)

If your users table has custom columns:

```
'admin_fields' => [
  'name' => 'full_name',
  'email' => 'email',
  'password' => 'password',
],
'admin_defaults' => [
  'is_admin' => 1,
  'role' => 'admin',
],
```

Security
--------

[](#security)

- Installer routes are blocked once the installed lock file exists.
- Delete `storage/installed` to re-run the installer.

Routes
------

[](#routes)

- `/install`
- `/install/requirements`
- `/install/database`
- `/install/run`
- `/install/admin`
- `/install/finish`

License
-------

[](#license)

MIT

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance77

Regular maintenance activity

Popularity19

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity44

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 ~0 days

Total

2

Last Release

146d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b4ac3ae914aadbc6c1e9760a9ba8ce150a3aefe238ad9c9ea3fe0d9f8e60c14a?d=identicon)[getecz](/maintainers/getecz)

---

Top Contributors

[![ajithjojo](https://avatars.githubusercontent.com/u/7994484?v=4)](https://github.com/ajithjojo "ajithjojo (9 commits)")

---

Tags

laravelinstallerwizard

### Embed Badge

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

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

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)[nedwors/navigator

A Laravel package to ease defining navigation menus

433.1k](/packages/nedwors-navigator)

PHPackages © 2026

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