larabile/laravel-modules

Laravel Module Management

Downloads

12

Stars

0

Version

Laravel-Modules

Software License Total Downloads

Laravel laravel-modules
5.8 ^1.0

larabile/laravel-modules is a Laravel package which created to manage your large Laravel app using modules. Module is like a Laravel package, it has some views, controllers or models. This package is supported and tested in Laravel 5.

Install

To install through Composer, by run the following command:

composer require larabile/laravel-modules

The package will automatically register a service provider and alias.

Optionally, publish the package's configuration file by running:

php artisan vendor:publish --provider="Larabile\Modules\LaravelModulesServiceProvider"

Autoloading

By default the module classes are not loaded automatically. You can autoload your modules using psr-4. For example:

{
  "autoload": {
    "psr-4": {
      "App\\": "app/",
      "Modules\\": "modules/"
    }
  }
}

Tip: don't forget to run composer dump-autoload afterwards.

Documentation

Coming soon!!!

About Edrick Agoncillo

Edrick Agoncillo is a Software Engineer specialising on the Laravel framework.

License

The MIT License (MIT). Please see License File for more information.

edricked

Author

edricked