| Package Data | |
|---|---|
| Maintainer Username: | joshbrw |
| Package Create Date: | 2017-02-17 |
| Package Last Update: | 2023-09-29 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-06 15:06:27 |
| Package Statistics | |
|---|---|
| Total Downloads: | 243,879 |
| Monthly Downloads: | 7,793 |
| Daily Downloads: | 399 |
| Total Stars: | 168 |
| Total Watchers: | 4 |
| Total Forks: | 34 |
| 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.