havennow / laravel-module
Laravel light module
Installs: 73
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/havennow/laravel-module
Requires
- php: ^7.2.5|^8.0
- illuminate/contracts: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0
- laravel/framework: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0
Requires (Dev)
- laravel/pint: ^1.0
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^8.5.8|^9.3.3
- roave/security-advisories: dev-latest
This package is auto-updated.
Last update: 2025-12-09 14:05:16 UTC
README
Light package based in package archived: https://github.com/ferrl/framework
The objective is, transform your code in simple modules
Require: PHP >= 7.2.5
Step for setup:
composer require havennow/laravel-modulephp artisan vendor:publish --provider="Havennow\LaravelModule\ModuleServiceProvider" --tag=config- see in config/modules.ph configs
Configuration
- in array you can enable in general or disable via ENV in
.envfile :LARAVEL_MODULE_ENABLE, is bool - you can enable specify module
1 => ['name' => 'XPTO', 'enable' => true ] - the index in array need be integer, for order load, in case one module load before another
- for default the folder is
app/Modules, and namespaceApp\Modules - can use prefix route
['route_prefix=> 'api' ] - can enable view or disable
['view_enable' => false]
How-use
- Put the ServiceProvider in config/app.php
\Havennow\LaravelModule\ModuleServiceProvider::classin providers section - in console
php artisan laravel-module:make-module Example - enable in config in
'available' => [add1 => ['name' => 'example', 'enable' => true ] - see the code into Modules path
- Test example in
http://localhost/example
Can custom abstract class for Module for example, you can disable the module in runtime
class Module extends ModuleAbstract
{
public function loadBefore()
{
$this->setEnable(false);
}
