delubyo / L5modules by delubyo

Laravel 5 Modular implementation
11
1
1
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: 2024-05-03 03:11:49
Package Statistics
Total Downloads: 11
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 1
Total Forks: 1
Total Open Issues: 0

L5modules

Laravel 5 Modular implementation

Installation

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

Service Provider

delubyo\L5modules\ModuleServiceProvider::class,

Update your project's composer.json

composer.json

    "autoload": {
        "classmap": [
            "database",
            "app/Modules"
        ],
        "psr-4": {
            "App\\": "app/",
            "Modules\\": "app/Modules"
        }
    }