chee / module
Module manager build for Chee Shop, but you can use on any laravel application
dev-master
2015-02-04 09:33 UTC
Requires
- php: >=5.4.0
- chee/pclzip: dev-master
- chee/version: dev-master
- laravel/framework: ~4
This package is not auto-updated.
Last update: 2024-11-05 03:18:54 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',