rampage-php/composer-module-installer

This package is abandoned and no longer maintained. No replacement package was suggested.

Composer installer for rampage-php framework modules

1.0.0 2013-04-15 10:05 UTC

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"
        }
    }
}