| Package Data | |
|---|---|
| Maintainer Username: | delubyo |
| Maintainer Contact: | albert.rosete@gmail.com (delubyo) |
| Package Create Date: | 2015-07-24 |
| Package Last Update: | 2015-07-28 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-10 03:10:10 |
| Package Statistics | |
|---|---|
| Total Downloads: | 11 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 0 |
| Total Forks: | 1 |
| Total Open Issues: | 0 |
Laravel 5 Modular implementation
Install via Composer.
Add the following line to the composer.json file and fire composer update
"delubyo/l5modules": "dev-master"
Update your project's service provider in config/app.php
delubyo\L5modules\ModuleServiceProvider::class,
Update your project's composer.json
"autoload": {
"classmap": [
"database",
"app/Modules"
],
"psr-4": {
"App\\": "app/",
"Modules\\": "app/Modules"
}
}