onbuilderx/lumen-rmbasemodule

Modular Management in Lumen
78
Install
composer require onbuilderx/lumen-rmbasemodule
PHP:>=7.2
License:MIT
Last Updated:Nov 4, 2022
Links: GitHub  ·  Packagist
Maintainer: OnbuilderX

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

Nicolas Widart

License

The MIT License (MIT).

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

576,155,700 34,907
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444