leskhq / lesk-modules by sroutier
forked from caffeinated/modules

Module package for Laravel enterprise starter kit
1,239
7
4
Package Data
Maintainer Username: sroutier
Maintainer Contact: shea.lewis89@gmail.com (Shea Lewis)
Package Create Date: 2016-03-15
Package Last Update: 2017-11-17
Home Page: http://lesk.it
Language: PHP
License: GPL-3.0
Last Refreshed: 2024-05-03 15:03:54
Package Statistics
Total Downloads: 1,239
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 7
Total Watchers: 4
Total Forks: 4
Total Open Issues: 0

LESK Modules

License

This is a fork of the excellent Caffeinated Modules with some cutomization to work specifically in the Laravel Enterprise Web application Starter Kit or LESK

Caffeinated Modules is a simple package to allow the means to separate your Laravel 5 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.

composer require sroutier/lesk-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

Sroutier\LESKModules\ModulesServiceProvider::class,

Facade

'Module' => Sroutier\LESKModules\Facades\Module::class,

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