Package Data | |
---|---|
Maintainer Username: | joshbrw |
Package Create Date: | 2017-02-17 |
Package Last Update: | 2023-09-29 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:06:36 |
Package Statistics | |
---|---|
Total Downloads: | 169,516 |
Monthly Downloads: | 5,265 |
Daily Downloads: | 219 |
Total Stars: | 162 |
Total Watchers: | 5 |
Total Forks: | 31 |
Total Open Issues: | 5 |
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/User
composer require joshbrw/laravel-module-installer
dev-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.