rampage-php / composer-module-installer
Composer installer for rampage-php framework modules
Installs: 125
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:composer-installer
This package is not auto-updated.
Last update: 2022-02-01 12:24:30 UTC
README
To make use of this installer add a dependency for it to your modules composer.json
The modules package type should then be set to rampage-module
.
Installer options
Note: The following options are only available in the root package.
Modules directory
You may specify a custom modules directory for your application. Add the rampage.modules-dir
extras option to your project's composer.json
file.
Modules Config
You may also customize the location of the modules definition file. To do so add the
rampage.modules-config
extras option to your project's composer.json
file.
Example
{ "extra": { "rampage": { "modules-dir": "application/modules", "modules-config": "application/etc/modules.conf" } } }