dev-master
9999999-devLaravel 5 Modules
MIT
The Requires
- php >=5.6.4
- illuminate/database 5.3.*
- illuminate/support 5.3.*
- illuminate/filesystem 5.3.*
- illuminate/config 5.3.*
- illuminate/routing 5.3.*
by Alex Khan
laravel modules xannn94
Wallogit.com
2017 © Pedro Peláez
Laravel 5 Modules
Caffeinated Modules is a simple package to allow the means to separate your Laravel 5.3 application out into modules. Each module is completely self-contained allowing the ability to simply drop a module in for use., (*2)
The package follows the FIG standards PSR-1, PSR-2, and PSR-4 to ensure a high level of interoperability between shared PHP code. At the moment the package is not unit tested, but is planned to be covered later down the road., (*3)
You will find user friendly and updated documentation in the wiki here: Caffeinated Modules Wiki, (*4)
Begin by installing the package through Composer., (*5)
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:, (*6)
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!, (*7)
Laravel 5 Modules
MIT
laravel modules xannn94