PHPackages                             lianmaymesi/lara-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. lianmaymesi/lara-installer

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

lianmaymesi/lara-installer
==========================

A simple UI installation setup for your Laravel Application

0.0.1(4y ago)35[2 PRs](https://github.com/lianmaymesi/lara-installer/pulls)MITBladePHP ^8.0

Since Feb 14Pushed 3y ago1 watchersCompare

[ Source](https://github.com/lianmaymesi/lara-installer)[ Packagist](https://packagist.org/packages/lianmaymesi/lara-installer)[ Docs](https://github.com/lianmaymesi/lara-installer)[ GitHub Sponsors](https://github.com/lianmaymesi)[ RSS](/packages/lianmaymesi-lara-installer/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (14)Versions (4)Used By (0)

Lara Installer
==============

[](#lara-installer)

A simple UI installation setup for your Laravel Application - Heavily inspired from [LinkAce](https://github.com/Kovah/LinkAce)
-------------------------------------------------------------------------------------------------------------------------------

[](#a-simple-ui-installation-setup-for-your-laravel-application---heavily-inspired-from-linkace)

[![Latest Version on Packagist](https://camo.githubusercontent.com/bc0b4cee7aaf07f238dc5b6b70bb02e5d54f32d9950c1cfa7cafec8ee8cfbf77/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c69616e6d61796d6573692f6c6172612d696e7374616c6c65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/lianmaymesi/lara-installer)[![GitHub Tests Action Status](https://camo.githubusercontent.com/5b929b5c1a782d41f97433f421bc9c60783b2857d42ffc71988767f529686954/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c69616e6d61796d6573692f6c6172612d696e7374616c6c65722f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/lianmaymesi/lara-installer/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/cef9fc85df46883227dbb85443fc142919b79ebf336a7c308b4b598217f5a424/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c69616e6d61796d6573692f6c6172612d696e7374616c6c65722f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/lianmaymesi/lara-installer/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/f867c3c4fc925b3ef6c509f207e5a045c096694129a96ab72956fcecf8887551/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c69616e6d61796d6573692f6c6172612d696e7374616c6c65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/lianmaymesi/lara-installer)

I haven't done alone this packagae on my own. I have just separated the installation setup from [LinkAce](https://github.com/Kovah/LinkAce) package for my personal projects. The full credibility goes to [LinkAce](https://github.com/Kovah/LinkAce) alone.

If you like this package give stars to [LinkAce](https://github.com/Kovah/LinkAce).

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

[](#installation)

You can install the package via composer:

```
composer require lianmaymesi/lara-installer
```

You can publish the config file with:

```
php artisan vendor:publish --provider="Lianmaymesi\LaraInstaller\LaraInstallerServiceProvider" --tag="lara-installer-config"
```

Optionally, you can publish the views using

```
php artisan vendor:publish --provider="Lianmaymesi\LaraInstaller\LaraInstallerServiceProvider" --tag="lara-installer-views"
```

Usage
-----

[](#usage)

You have to add the middleware into your routes to redirect all routes to installations. If you have installed &amp; created user, the middleware allows to enter your application route.

```
Route::middleware(['web', 'check-install'])->group(function () {
    // Your routes
});
```

Config
======

[](#config)

PHP Version
-----------

[](#php-version)

You have to enter the PHP Version ID that your application requies in the following format `8.0.12 => 8 * 10000 + 0 * 100 + 12`

```
return [
    'php_version_id' => env('LI_PHP_VERSION_ID', 80012)
]

```

Application Version
-------------------

[](#application-version)

Enter your application version for showing in the installation page

```
return [
    'app_version' => env('LI_APP_VERSION', '1.0.0'),
]

```

Redirection after Installation
------------------------------

[](#redirection-after-installation)

Once your application installed successfully, where the user heading to

```
return [
    'redirect_to' => env('LI_REDIRECT_TO', 'home')
]

```

Marketing Headings &amp; Tags
-----------------------------

[](#marketing-headings--tags)

You can customize data in the frontend, if you'd like to keep the default UI without publishing vendor view files,

```
return [
    'heading' => env('LI_MARKETING_HEADING', 'Laravel installer for your App'),

    'sub_heading' => env('LI_MARKETING_SUB_HEADING', 'A simple UI installation setup for your Laravel Application - Heavily inspired from LinkAce'),

    'cta' => env('LI_MARKETING_CTA', 'https://github.com/lianmaymesi/lara-installer')
]

```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [LinkAce](https://github.com/Kovah/LinkAce)
- [LiAn DhAs](https://github.com/lianmaymesi)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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

Unknown

Total

1

Last Release

1548d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/584db91c2a3c82edc4b1a0a98e62dbd52191af28df7427e4b39a71523edf1b02?d=identicon)[lianmay.mesi](/maintainers/lianmay.mesi)

---

Top Contributors

[![lianmaymesi](https://avatars.githubusercontent.com/u/42940836?v=4)](https://github.com/lianmaymesi "lianmaymesi (27 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (20 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (18 commits)")

---

Tags

lara-installerlaravellaravel-installerlaravelinstallerlaravel Installerlara-installer

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/lianmaymesi-lara-installer/health.svg)

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

###  Alternatives

[spatie/laravel-data

Create unified resources and data transfer objects

1.7k28.9M627](/packages/spatie-laravel-data)[hirethunk/verbs

An event sourcing package that feels nice.

513162.9k6](/packages/hirethunk-verbs)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

123544.7k](/packages/worksome-exchange)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)

PHPackages © 2026

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