hanseaticdev/southapi-module

There is no license information available for the latest version (1.0.1) of this package.

Installs: 521

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:laravel-module

1.0.1 2023-06-07 08:43 UTC

This package is auto-updated.

Last update: 2024-04-07 10:32:53 UTC


README

Laravel laravel-modules southapi-module
10.0 ^10.0 ^1.0.0

hanseaticdev/southapi-module Laravel module with support methods like logging, masking etc

Install

To use this requires lavavel-modules by nwidart. Please check the according information.

To install through Composer, by run the following command:

composer require hanseaticdev/southapi-module

The package will automatically register a service provider and alias. Make sure so add this lines to the config/modules.php of your laval-application

    'scan' => [
        'enabled' => true,
        'paths' => [
            base_path('vendor/*/*'),
        ],
    ],

Enable the module by running:

php artisan module:enable SouthAPI

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/",
      "Database\\Factories\\": "database/factories/",
      "Database\\Seeders\\": "database/seeders/"
  }

}

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

Documentation

will follow soon

License

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