nedsbeds / blt-command-installer
Package info
github.com/nedsbeds/blt-command-installer
Type:composer-plugin
pkg:composer/nedsbeds/blt-command-installer
dev-master
2019-02-20 10:34 UTC
Requires
- composer-plugin-api: ^1.0
Requires (Dev)
- composer/composer: ^1.3
This package is auto-updated.
Last update: 2026-02-28 06:57:04 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": "*"
}
}