blesta / composer-installer
Installs: 6 077
Dependents: 58
Suggesters: 0
Security: 0
Stars: 3
Watchers: 7
Forks: 3
Open Issues: 0
Type:composer-installer
Requires
- php: >=5.3
- composer/installers: ~1.0
Requires (Dev)
- composer/composer: 1.0.*@dev
- phpunit/phpunit: ~4.6
- satooshi/php-coveralls: dev-master
- squizlabs/php_codesniffer: ~2.2
This package is auto-updated.
Last update: 2024-10-15 19:36:13 UTC
README
A library for installing Blesta extensions using composer.
Usage
To use simply add blesta/composer-installer
as a requirement to your extension's composer.json
file,
and tell composer which type of extension you've created.
"type": "blesta-plugin", "require": { "blesta/composer-installer": "~1.0" }
In the above example, we've set blesta-plugin
as the type of composer package.
See below for a complete list of supported types, and choose the appropriate one for your extension.
Supported Types
- blesta-plugin
- Use for Plugins
- blesta-module
- Use for Modules
- blesta-gateway-merchant
- Use for Merchant Gateways
- blesta-gateway-nonmerchant
- Use for Non-merchant Gateways
- blesta-invoice-template
- Use for Invoice Templates
- blesta-report
- Use for Reports
Now list your extension with packagist (the default composer repository) and anyone can install your extension with composer!