PHPackages                             iurylippo/lumen-modules - 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. [Framework](/categories/framework)
4. /
5. iurylippo/lumen-modules

ActiveLibrary[Framework](/categories/framework)

iurylippo/lumen-modules
=======================

Lumen Module management

1.0.5(5y ago)11301[1 issues](https://github.com/iurylippo/lumen-modules/issues)MITPHPPHP ^7.2.5CI failing

Since Jun 9Pushed 5y ago1 watchersCompare

[ Source](https://github.com/iurylippo/lumen-modules)[ Packagist](https://packagist.org/packages/iurylippo/lumen-modules)[ RSS](/packages/iurylippo-lumen-modules/feed)WikiDiscussions develop Synced 4d ago

READMEChangelog (4)Dependencies (7)Versions (8)Used By (0)

Lumen-Modules
=============

[](#lumen-modules)

**Laravel-Lumen****lumen-modules**| 7.0 | ^7.0 |

`iurylippo/lumen-modules` lumen package to generate modules with controllers, providers, services, repositories, entities and tests in a Dependency Injected way.

Install
-------

[](#install)

To install through Composer, by run the following command:

```
composer require iurylippo/lumen-modules
```

### Autoloading

[](#autoloading)

By default the module classes are not loaded automatically. You can autoload your modules using `psr-4`. For example:

```
{
  "autoload": {
    "psr-4": {
      "App\\": "app/",
      "Modules\\": "Modules/"
    }
  }
}
```

**Tip: don't forget to run `composer dump-autoload` afterwards.**

Lumen doesn't come with a vendor publisher. In order to use laravel-modules with lumen you have to set it up manually.

Create a config folder inside the root directory and copy `vendor/nwidart/laravel-modules/config/config.php` to that folder named `modules.php`

```
mkdir config
cp vendor/nwidart/laravel-modules/config/config.php config/modules.php
```

Then load the config and the service provider in`bootstrap/app.php`

```
$app->configure('modules');
$app->register(\Nwidart\Modules\LumenModulesServiceProvider::class);
```

Laravel-modules uses path.public which isn't defined by default in Lumen. Register path.public before loading the service provider.

```
$app->bind('path.public', function() {
 return __DIR__ . 'public/';
});
```

**Tip: Put this path bind above the $app.**

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

[](#documentation)

You'll find installation instructions and full documentation on . THE ORIGINAL PACKAGE FOR LARAVEL

Credits
-------

[](#credits)

- [Nicolas Widart](https://github.com/nwidart)

About Nicolas Widart
--------------------

[](#about-nicolas-widart)

Nicolas Widart is a freelance web developer specialising on the Laravel framework. View all the packages [on my website](https://nwidart.com/), or visit [my website](https://nicolaswidart.com).

License
-------

[](#license)

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

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity55

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

Total

6

Last Release

2114d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/35785386?v=4)[Iury Lippo](/maintainers/iurylippo)[@iurylippo](https://github.com/iurylippo)

---

Top Contributors

[![iurylippo](https://avatars.githubusercontent.com/u/35785386?v=4)](https://github.com/iurylippo "iurylippo (11 commits)")

---

Tags

laravellumenmodulemodulesradnwidartiurylippo

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/iurylippo-lumen-modules/health.svg)

```
[![Health](https://phpackages.com/badges/iurylippo-lumen-modules/health.svg)](https://phpackages.com/packages/iurylippo-lumen-modules)
```

###  Alternatives

[nwidart/laravel-modules

Laravel Module management

6.1k14.6M274](/packages/nwidart-laravel-modules)[mhmiton/laravel-modules-livewire

Using Laravel Livewire in Laravel Modules package with automatically registered livewire components for every modules.

236409.6k9](/packages/mhmiton-laravel-modules-livewire)[pingpong/modules

Laravel Modules

592188.7k13](/packages/pingpong-modules)

PHPackages © 2026

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