rvtraveller/qs-composer-installer

Install Quicksilver modules for Pantheon into custom locations.

Installs: 1 769 898

Dependents: 23

Suggesters: 0

Security: 0

Stars: 6

Watchers: 2

Forks: 2

Open Issues: 0

Type:composer-plugin

1.2 2021-01-04 22:27 UTC

This package is auto-updated.

Last update: 2024-05-05 05:59:54 UTC


README

Creates a new "type" in Composer for quicksilver-scripts so you can treat them separately in Composer installations. This allows you to include Quicksilver scripts as part of a composer based project on Pantheon[https://pantheon.io].

To use this custom installer, require it in your project (root-level) composer.json file. Then, any Composer project of type quicksiver-script will be placed in the directory web/private/scripts/quicksilver. This path may be customized in the installer-paths item in extras.

The web/private/scripts/quicksilver path (or your customized path) should be added to your project's .gitignore.

Example composer.json file

{
  "require": {
    "rvtraveller/qs-composer-installer": "1.0"
  },
  "extra": {
    "installer-paths": {
      "web/private/scripts/quicksilver/{$name}": ["type:quicksilver-script"]
    }
  }
}