dungdeha/module-manager

Module Manager & Generator for laravel project

Installs: 747

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/dungdeha/module-manager

dev-main 2025-02-25 04:17 UTC

This package is auto-updated.

Last update: 2025-11-25 05:46:55 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