nedsbeds/blt-command-installer

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:composer-plugin

pkg:composer/nedsbeds/blt-command-installer

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

This package is auto-updated.

Last update: 2025-09-28 06:09:46 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": "*"
    }
}