/custom-installer

Composer Custom Type Installer

Primary LanguagePHPApache License 2.0Apache-2.0

Composer Custom Type Installer

Adds a root-level custom type installer path to composer.json. Any custom type can be used to define a path the type should be installed in.

Installation

Simply require this library in your composer.json file. Typically this will be added as a dependency of the custom type to ensure that the library is loaded before the library that needs it. However, this can be added to the root composer.json, as long as it goes before any library that needs it.

{
    "require": {
        "davidbarratt/custom-installer": "1.0.*@alpha"
    }
}

Usage

The added parameter(s) are only allowed on the root to avoid conflicts between multiple libraries. This also prevents a project owner from having a directory accidentally wiped out by a library.

custom-installer (root-level)

You may use Composer Installer type installation paths with the variables {$name}, {$vendor}, and {$type}. Each package will go in it’s respective folder in the order in which they are installed.

{
    "extra": {
        "custom-installer": {
            "drupal-core": "web/",
            "drupal-site": "web/sites/{$name}/",
            "random-type": "custom/{$type}/{$vendor}/{$name}/"
        }
    }
}