| Package Data | |
|---|---|
| Maintainer Username: | duongtung461991 | 
| Maintainer Contact: | tungdt1@dxmb.vn (Đất xanh miền bắc) | 
| Package Create Date: | 2021-12-13 | 
| Package Last Update: | 2021-12-17 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-28 03:08:41 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 73 | 
| Monthly Downloads: | 2 | 
| Daily Downloads: | 0 | 
| Total Stars: | 0 | 
| Total Watchers: | 1 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
Make modular lumen framework for make easy teamwork on big projects
lumen modules is a lumen package which created to manage your large lumen app using modules. Module is like a lumen package, it has some controllers or models. This package is supported and tested in lumen 8. This package is a re-published, re-organised and maintained version of laravel-modules, which isn't support lumen officially.
To install through Composer, by run the following command:
composer require dxmb/lumen-modules
after install complete, load the config and the service provider in bootstrap/app.php
$app->register(dxmb\Modules\LumenModulesServiceProvider::class);
By default the module classes are not loaded automatically. You can autoload your modules using psr-4. so add bellow  code in your composer.json :
{
"autoload": {
	"psr-4": {
 	 "App\\": "app/",
  	"Modules\\": "modules/"
 }
 }
}
for more info and full documentation visit https://nwidart.com/laravel-modules/