nedsbeds/blt-command-installer

dev-master 2019-02-20 10:34 UTC

This package is auto-updated.

Last update: 2024-03-28 03:04:33 UTC


README

This is a Composer installer for installing custom BLT Commands

Usage

When creating your custom command, add the following to a composer.json file.

The name should match your package name

The type "blt-command" will mean that the file is installed to the BLT custom command folder

By requiring this ('blt-command-installer') repo, your BLT project will download the installer first.

{
    "name": "nedsbeds/custom-blt-command",
    "type": "blt-command",
    "require": {
        "nedsbeds/blt-command-installer": "*"
    }
}