| Package Data | |
|---|---|
| Maintainer Username: | expstudio |
| Maintainer Contact: | waycs16@gmail.com (Watee Wichiennit) |
| Package Create Date: | 2017-08-31 |
| Package Last Update: | 2018-02-16 |
| Home Page: | https://expstudio.github.io/ |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-26 15:02:55 |
| Package Statistics | |
|---|---|
| Total Downloads: | 4,283 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Expstudio Modules is a simple package to allow the means to separate your Lumen 5.4 application out into modules. Each module is completely self-contained allowing the ability to simply drop a module in for use.
The package follows the FIG standards PSR-1, PSR-2, and PSR-4 to ensure a high level of interoperability between shared PHP code.
You will find user friendly and updated documentation in the wiki here: Caffeinated Modules Wiki
Begin by installing the package through Composer.
composer require expstudio/lumen-modules
Once this operation is complete, simply add both the service provider and facade classes to your project's bootstrap/app.php file:
$app->register(Expstudio\Modules\ModulesServiceProvider::class);
$app->withFacades(true, [Expstudio\Modules\Facades\Module::class => 'Module']);
And that's it! With your coffee in reach, start building out some awesome modules!
$app->register(App\Modules\[ModuleName]\Providers\ModuleServiceProvider::class);