PHPackages                             agenter-labs/laravel-module - 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. agenter-labs/laravel-module

ActiveLibrary

agenter-labs/laravel-module
===========================

Module management package for Laravel

2.0.9(4y ago)0217MITPHPPHP &gt;=7.3

Since Apr 11Pushed 4y ago1 watchersCompare

[ Source](https://github.com/agenter-labs/laravel-module)[ Packagist](https://packagist.org/packages/agenter-labs/laravel-module)[ RSS](/packages/agenter-labs-laravel-module/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (7)Versions (23)Used By (0)

Module management package for Laravel
=====================================

[](#module-management-package-for-laravel)

[![Downloads](https://camo.githubusercontent.com/3a53ba36229159696f84d3e6ae1296ea062508c980016d992d5045a09a78ab0b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616b61756e74696e672f6c61726176656c2d6d6f64756c65)](https://camo.githubusercontent.com/3a53ba36229159696f84d3e6ae1296ea062508c980016d992d5045a09a78ab0b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616b61756e74696e672f6c61726176656c2d6d6f64756c65)[![StyleCI](https://camo.githubusercontent.com/e886ad428060f013e69cb5e3651a24a4de81fb7e8149633c93fb13fec5fd1394/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3138303835393836362f736869656c643f7374796c653d666c6174266272616e63683d6d6173746572)](https://styleci.io/repos/180859866)[![Quality](https://camo.githubusercontent.com/ee9d11ad80135d0d6dd68303d8c0df130024ca915f58050d317bb561fcef18e9/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f7175616c6974792f672f616b61756e74696e672f6c61726176656c2d6d6f64756c653f6c6162656c3d7175616c697479)](https://scrutinizer-ci.com/g/akaunting/laravel-module)[![License](https://camo.githubusercontent.com/2a629af31420680939966064414b948639849c3142c869c9321387b46e3c8922/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f616b61756e74696e672f6c61726176656c2d6d6f64756c65)](LICENSE.md)

This package intends to make your Laravel app extensible via modules. A module is a kinda small Laravel app, shipping with its own views, controllers, models, etc.

Getting Started
---------------

[](#getting-started)

### 1. Install

[](#1-install)

Run the following command:

```
composer require akaunting/laravel-module
```

### 2. Register

[](#2-register)

Service provider and facade will be registered automatically. If you want to register them manually in `config/app.php`:

```
Akaunting\Module\Facade::class,
Akaunting\Module\Providers\Laravel::class,
```

### 3. Publish

[](#3-publish)

Publish config file.

```
php artisan vendor:publish --tag=module
```

### 4. Configure

[](#4-configure)

You can change the configuration from `config/module.php` file

### 5. Autoloading

[](#5-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.**

Usage
-----

[](#usage)

Check out the [wiki](../../wiki) about the usage and further documentation.

Changelog
---------

[](#changelog)

Please see [Releases](../../releases) for more information what has changed recently.

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

[](#contributing)

Pull requests are more than welcome. You must follow the PSR coding standards.

Credits
-------

[](#credits)

- [Denis Duliçi](https://github.com/denisdulici)
- [Nicolas Widart](https://github.com/nwidart)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 84% 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 ~36 days

Recently: every ~20 days

Total

22

Last Release

1820d ago

Major Versions

1.0.11 → 2.0.02020-10-17

PHP version history (2 changes)1.0.0PHP &gt;=7.1

2.0.0PHP &gt;=7.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/bd46fd4f768f5e375e0cae98652143335896c9bcb188ae404751e82cefbebcf7?d=identicon)[agenter-labs](/maintainers/agenter-labs)

---

Top Contributors

[![denisdulici](https://avatars.githubusercontent.com/u/5254835?v=4)](https://github.com/denisdulici "denisdulici (42 commits)")[![sevannerse](https://avatars.githubusercontent.com/u/16224533?v=4)](https://github.com/sevannerse "sevannerse (6 commits)")[![burakcakirel](https://avatars.githubusercontent.com/u/3121372?v=4)](https://github.com/burakcakirel "burakcakirel (1 commits)")[![mathieutu](https://avatars.githubusercontent.com/u/11351322?v=4)](https://github.com/mathieutu "mathieutu (1 commits)")

---

Tags

laravelmoduleradakaunting

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/agenter-labs-laravel-module/health.svg)

```
[![Health](https://phpackages.com/badges/agenter-labs-laravel-module/health.svg)](https://phpackages.com/packages/agenter-labs-laravel-module)
```

###  Alternatives

[nwidart/laravel-modules

Laravel Module management

6.1k14.6M274](/packages/nwidart-laravel-modules)[akaunting/laravel-module

Module management package for Laravel

124239.1k](/packages/akaunting-laravel-module)

PHPackages © 2026

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