hanseaticdev / hbsupport-module
Installs: 185
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:laravel-module
Requires
- php: ^8.1
- laravel/framework: ^10.0
- nwidart/laravel-modules: ^10.0
This package is auto-updated.
Last update: 2025-05-07 16:48:05 UTC
README
Laravel | laravel-modules | hbsupport-module |
---|---|---|
10.0 | ^10.0 | ^1.0.0 |
hanseaticdev/hbsupport-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/hbsupport-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 HbSupport
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.