dungdeha / module-manager
Module Manager & Generator for Laravel
dev-main
2026-06-08 04:15 UTC
Requires
- php: ^8.3 || ^8.4
- laravel/framework: ^12.0 || ^13.0
- opcodesio/log-viewer: ^3.21
- spatie/laravel-backup: ^9.2 || ^10.0
- sqids/sqids: ^0.5.0
- yajra/laravel-datatables-oracle: ^12.0 || ^13.0
Requires (Dev)
- orchestra/testbench: ^10.0 || ^11.0
- phpunit/phpunit: ^11.0 || ^12.0
This package is auto-updated.
Last update: 2026-06-08 04:16:08 UTC
README
Module Manager is used to manage and generate Module for laravel projects.
Installation
You can install the package via Composer:
composer require dungdeha/module-manager:dev-main
After installing the package, you need to publish the config file and the module stub files. You can do this by running the following command:
php artisan vendor:publish --tag=module-manager
Usage
To create a project use the following command, you have to replace the MODULE_NAME with the name of the module.
php artisan module:build MODULE_NAME
You may want to use --force option to overwrite the existing module. if you use this option, it will replace all the exisitng files with the defalut stub files.
php artisan module:build MODULE_NAME --force