xurape/modulify is a Laravel package for a simple laravel 11.x module manager..
It currently has 8 GitHub stars and 44 downloads on Packagist (latest version 0.6.1).
Install it with composer require xurape/modulify.
Discover more Laravel packages by xurape
or browse all Laravel packages to compare alternatives.
Last updated
A simple, intuitive and easy laravel module manager. It allows you to create and delete modules with ease. The modules can contain routes, controllers, views and models.
Quick start · Usage · Todo · Wiki · License
Well, wether you're working on a big project or a small one, you might want to keep your code organized and separated. This package allows you to create modules that contain all the necessary files for a single independent module, where you can use it standalone in another project or implement it in your current project.
composer require xurape/modulify
For more detail, check out our wiki!
Create a new module
php artisan modulify:make <name>
Delete a module
php artisan modulify:delete <name>
List all modules
php artisan modulify:list
List a module in detail (Controllers, models and migrations)
php artisan modulify:list --module=<name>
Check up modulify with the doctor for any problems
php artisan modulify:doctor
Get current modulify version
php artisan modulify:version
Update modulify to the latest version! ✨
php artisan modulify:update
modulify:search to search for modulesmodulify:doctor to analyse all the modules and check for errorsmodulify:update to update modulifymodulify:version to check current versionThis project is licensed under the MIT License - see the LICENSE file for details.