kowalk / modules

Modules package for the Laravel 5 framework

Home Page:http://caffeinated.ninja

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Caffeinated Modules

Laravel Source Build Status License

Caffeinated Modules is a simple package to allow the means to separate your Laravel 5.0 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. At the moment the package is not unit tested, but is planned to be covered later down the road.

Documentation

You will find user friendly and updated documentation in the wiki here: Caffeinated Modules Wiki

Quick Installation

Begin by installing the package through Composer. The best way to do this is through your terminal via Composer itself:

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:

Service Provider

'Caffeinated\Modules\ModulesServiceProvider',

Facade

'Module' => 'Caffeinated\Modules\Facades\Module',

And that's it! With your coffee in reach, start building out some awesome modules!

About

Modules package for the Laravel 5 framework

http://caffeinated.ninja

License:MIT License


Languages

Language:PHP 100.0%