Xannn94 / modules by xannn94

Laravel 5 Modules
81
0
2
Package Data
Maintainer Username: xannn94
Maintainer Contact: axiles94@gmail.com (Alex Khan)
Package Create Date: 2017-04-26
Package Last Update: 2017-10-06
Language: PHP
License: MIT
Last Refreshed: 2024-03-28 03:00:17
Package Statistics
Total Downloads: 81
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

This package is based on the package caffeinated/modules and used for CMS weltkind/larawelt

Caffeinated Modules

Laravel 5.3 Source License

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.

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 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::class,

Facade

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

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