Package Data | |
---|---|
Maintainer Username: | eafshary |
Maintainer Contact: | shea.lewis89@gmail.com (Shea Lewis) |
Package Create Date: | 2017-08-01 |
Package Last Update: | 2017-09-14 |
Home Page: | http://caffeinated.ninja |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:05:41 |
Package Statistics | |
---|---|
Total Downloads: | 29 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Caffeinated Modules is a simple package to allow the means to separate your Laravel 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 caffeinated/modules
Once this operation is complete, simply add both the service provider and facade classes to your project's config/app.php
file:
Caffeinated\Modules\ModulesServiceProvider::class,
'Module' => Caffeinated\Modules\Facades\Module::class,
And that's it! With your coffee in reach, start building out some awesome modules!