jumbodroid/laramod

v1.0.0 2021-07-09 20:20 UTC

This package is auto-updated.

Last update: 2024-04-23 22:56:42 UTC


README

Install

To install through Composer, add a vcs repository pointing to this repo and run the following command:

composer require jumbodroid/laramod

The package will automatically register a service provider and alias.

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

php artisan vendor:publish --provider="Jumbodroid\Laramod\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.