sroutier / lesk-modules
Module package for Laravel enterprise starter kit
Installs: 3 831
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 4
Forks: 216
Open Issues: 0
Requires
- php: >=5.5.9
- illuminate/config: 5.1.*|5.2.*
- illuminate/database: 5.1.*|5.2.*
- illuminate/filesystem: 5.1.*|5.2.*
- illuminate/routing: 5.1.*|5.2.*
- illuminate/support: 5.1.*|5.2.*
Suggests
- wikimedia/composer-merge-plugin: Allows the ability to create and merge composer.json files for your individual modules for module-specific dependency management.
- dev-master / 3.0.x-dev
- 3.0.7.15
- 3.0.7.14
- 3.0.7.13
- 3.0.7.12
- 3.0.7.11
- 3.0.7.10
- 3.0.7.9
- 3.0.7.8
- 3.0.7.7
- 3.0.7.6
- 3.0.7.5
- 3.0.7.4
- 3.0.7.3
- 3.0.7.2
- 3.0.7.1
- v3.0.7
- 3.0.6.4
- 3.0.6.3
- 3.0.6.2
- 3.0.6.1
- v3.0.6
- v3.0.5
- v3.0.4
- v3.0.3
- v3.0.2
- v3.0.1
- v3.0
- v2.2.4
- v2.2.3
- v2.2.2
- v2.2.1
- v2.2
- v2.1.11
- v2.1.10
- v2.1.9
- v2.1.8
- v2.1.7
- v2.1.6
- v2.1.5
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1
- v2.0.2
- v2.0.1
- v1.2.3
This package is not auto-updated.
Last update: 2022-02-01 13:01:41 UTC
README
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!