dungdeha/module-manager

Module Manager & Generator for Laravel

Maintainers

👁 dungdeha

Package info

github.com/dungdeha/module-manager

pkg:composer/dungdeha/module-manager

Statistics

Installs: 751

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-06-08 04:15 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 53e3f85941d040c82735653b234fb00c075c3d4e

  • DungDD <dungdd.woop@deha-soft.com>

laravelModule Managermodule generator

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