chee/module

Module manager build for Chee Shop, but you can use on any laravel application

dev-master 2015-02-04 09:33 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:53:21 UTC


README

a module manager for laravel 4

Install

update composer.json in laravel root with:

"require": {
	"laravel/framework": "4.2.*",
	"chee/module": "dev-master"
},

and run composer update. then run:

sudo php artisan migrate --package=chee/module

then add service provider and facades in app/config/app.php.

Service Provider:

'Chee\Module\ModuleServiceProvider',

Facades:

'CheeModule'	  => 'Chee\Module\Facades\CheeModule',