sabers / modules-manager
A Laravel package for managing modules.
Requires
- php: ^8.1
- laravel/framework: ^10.10
- livewire/livewire: ^3.0
- mhmiton/laravel-modules-livewire: ^2.1
- nwidart/laravel-modules: ^10.0
Requires (Dev)
- livewire/livewire: ^3.0
This package is auto-updated.
Last update: 2025-03-13 18:09:14 UTC
README
Modules Manager is a Laravel package that simplifies the management of modules in your Laravel applications.
Installation
Require this package with composer. It is recommended to only require the package for development.
composer require sabers/modules-manager
Next, publish the package's configuration file and assets using the following Artisan command:
php artisan vendor:publish --tag="modules-manager"
After publishing the configuration, make sure to run the install command , this will setup layouts , install frnt and back end packages revolving around the tallStack
php artisan tallStack:install
After the instalation, make sure to install the required frontend dependencies and compile the assets:
npm install npm run dev
Now, add the following line to the PSR-4 autoload section in your composer.json file:
"autoload": { "psr-4": { "Modules\\": "Modules/" // this should be added } },
After adding the line, run the following command to autoload the new classmap:
composer dump-autoload