sly-soft-community/laravel-module-installer is a Laravel package.
It currently has 0 GitHub stars and 497 downloads on Packagist.
Install it with composer require sly-soft-community/laravel-module-installer.
Discover more Laravel packages by sly-soft-community
or browse all Laravel packages to compare alternatives.
Last updated
The purpose of this package is to allow for easy installation of standalone Modules into the Laravel Modules package. This package will ensure that your module is installed into the Modules/ directory instead of vendor/.
You can specify an alternate directory by including a module-dir in the extra data in your composer.json file:
"extra": {
"module-dir": "Custom"
}
type set to laravel-module in your module's composer.json<namespace>/<name>-module, for example joshbrw/user-module would install into Modules/Usercomposer require joshbrw/laravel-module-installerdev-master to ensure you always get the latest version.composer update within the app itself to ensure that the latest version of your module (dependant upon constraint) is specified in your composer.lock file.