onbuilderx/lumen-rmbasemodule
| Install | |
|---|---|
composer require onbuilderx/lumen-rmbasemodule |
|
| PHP: | >=7.2 |
| License: | MIT |
| Last Updated: | Nov 4, 2022 |
| Links: | GitHub · Packagist |
lumen-rmbasemodule
Modular Management in Lumen
Features
lumen-rmbasemodule is a lumen package which created to manage your large atomic lumen app using modules.
Install
To install through Composer, by run the following command:
composer require onbuilderx/lumen-rmbasemodule
after install complete, load the config and the service provider in bootstrap/app.php
$app->register(RmBased\Modules\LumenModulesServiceProvider::class);
By default the module classes are not loaded automatically. You can autoload your modules using psr-4. Add in your composer.json :
{
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "modules/"
}
}
}
Tip: don't forget to run composer dump-autoload afterwards.
Documentation
You'll find installation instructions and full documentation on https://nwidart.com/laravel-modules/.
Credits
License
The MIT License (MIT).
Related Packages
laravel-paypalpayment is simple package help you process direct credit card paym...
Powerful PHP database abstraction layer (DBAL) with many features for database s...