PHPackages                             olakunlevpn/laravel-installer-license - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. olakunlevpn/laravel-installer-license

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

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

License verification and account management plugin for Laravel Installer

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

Since Dec 13Pushed 2mo agoCompare

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

READMEChangelogDependencies (1)Versions (3)Used By (0)

Laravel Installer - License Verification
========================================

[](#laravel-installer---license-verification)

[![Latest Version](https://camo.githubusercontent.com/a3d55d4bb3acc7fdf77d9585218d2c0b51b4d29ab6d97a51676ee7f2799c6232/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6f6c616b756e6c6576706e2f6c61726176656c2d696e7374616c6c65722e7376673f7374796c653d666c61742d737175617265)](https://github.com/olakunlevpn/laravel-installer/releases)[![Total Downloads](https://camo.githubusercontent.com/331bd3664b17eaf7e1bbf804d1e1846e9941d8907c5da8035a8916779e0cd98a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f6c616b756e6c6576706e2f6c61726176656c2d696e7374616c6c65722d6c6963656e73652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/olakunlevpn/laravel-installer-license)

This package adds license verification to Laravel Installer. It validates purchase codes via your API before allowing installation to proceed.

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

Here's what you can do:

```
// Set your license API endpoint
LICENSE_API_URL=https://api.yoursite.com/verify
```

The package automatically verifies licenses:

```
// User enters license key
// Package calls your API
// On success: Installation continues
// On failure: Shows error message
```

Your API receives the license data:

```
{
    "license_key": "XXXX-XXXX-XXXX-XXXX",
    "email": "user@example.com",
    "domain": "customer-site.com"
}
```

Return verification result:

```
{
    "success": true,
    "message": "License verified successfully",
    "data": {
        "license_type": "professional",
        "expires_at": "2025-12-31"
    }
}
```

The verified license is stored in the database after installation completes.

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

[](#installation)

You can install the package via composer:

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

Create the licenses table migration:

```
php artisan make:migration create_licenses_table
```

Configure your license API endpoint:

```
LICENSE_API_URL=https://api.yoursite.com/verify
LICENSE_STEP_POSITION=2
```

That's it! The license verification step will appear in your installer.

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

Usage
-----

[](#usage)

The package handles everything automatically. Users enter their license key and email, and the package:

1. Calls your API with the license data
2. Validates the response
3. Stores license in session
4. After installation, saves to `licenses` table

Development Mode
----------------

[](#development-mode)

Skip verification during development:

```
LICENSE_SKIP_VERIFICATION=true
```

**Never enable in production.**

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

[](#customization)

Publish the configuration file:

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

Publish views to customize the UI:

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

Publish translations:

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

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

Changelog
---------

[](#changelog)

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

License
-------

[](#license)

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

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance84

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community6

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

81d 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 (2 commits)")

---

Tags

pluginlaravellicenseinstallerverification

### Embed Badge

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

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

###  Alternatives

[lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users.

2.3k16.4M48](/packages/lab404-laravel-impersonate)[rinvex/laravel-authy

Rinvex Authy is a simple wrapper for Authy TOTP, the best rated Two-Factor Authentication service for consumers, simplest 2fa Rest API for developers and a strong authentication platform for the enterprise.

3376.7k1](/packages/rinvex-laravel-authy)[hapidjus/laravel-impersonate-ui

UI for 404labfr/laravel-impersonate

371.5k](/packages/hapidjus-laravel-impersonate-ui)

PHPackages © 2026

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