aindong / pluggables by aindong

Pluggable features/Modular Structure helper for laravel 5
2,031
4
3
Package Data
Maintainer Username: aindong
Maintainer Contact: freedom_war550@live.com.ph (Alleo Indong)
Package Create Date: 2015-05-18
Package Last Update: 2016-05-13
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 03:02:24
Package Statistics
Total Downloads: 2,031
Monthly Downloads: 5
Daily Downloads: 0
Total Stars: 4
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

Laravel 5.1 Build Status LICENSE StyleCI

##Pluggables

A modular pattern guide/generator for creating a (more modular way) laravel application easily. It follows the FIG PSR-1, PSR-2, and PSR-4 coding standards. Pluggables supports the current version of laravel (5.1).

##QUICK INSTALLATION

You can install this package using composer

composer require aindong/pluggables=~1.0

Once the composer operation is complete, locate your config/app.php and open it using your editor(vim, sublime, phpstorm, etc). Then add this into the service providers array

Aindong\Pluggables\PluggablesServiceProvider::class,

then scroll down to see the facade array and add this

'Pluggables' => Aindong\Pluggables\Facades\Pluggable::class,

after that, you have to set the configuration files of pluggables using php artisan vendor:publish then look for the pluggables.php on the config folder.

and you can start using both the Plugegables console commands and facades during the development of your application, to see all the pluggables commands simply type this into your terminal php artisan and check for pluggables. Have fun!

#####NOTES: Development stage

#####SOON Will add unit tests soon. For those who would like to contribute, you can always contact me @ alleo.indong@gmail.com for now, thank you!