Download the PHP package visanduma/laravel-module-installer without Composer
On this page you can find all versions of the php package visanduma/laravel-module-installer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package laravel-module-installer
Laravel Module Installer
All packages that have type laravel-module
in composer.json will be automatically move to 'Module' or configured folder
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
, module-name
in the extra data in your composer.json file:
"extra": {
"module-dir": "Custom",
"module-name": "PrettyName"
}
Installation
- Ensure you have the
type
set tolaravel-module
in your module's `composer.json Ensure your package is named in the convention<namespace>/<name>-module
, for examplejoshbrw/user-module
would install intoModules/User
- Require this package:
composer require visanduma/laravel-module-installer
- Require your bespoke module using Composer. You may want to set the constraint to
dev-master
to ensure you always get the latest version.
Notes
- When working on a module that is version controlled within an app that is also version controlled, you have to commit and push from inside the Module directory and then
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.
All versions of laravel-module-installer with dependencies
PHP Build Version
Package Version
Requires
composer-plugin-api Version
^2.0
php Version 7.* || 8.*
php Version 7.* || 8.*
The package visanduma/laravel-module-installer contains the following files
Loading the files please wait ....