magento-hackathon / composer-command-integrator
module to create binaries and scripts which get executed in context of composer so they are able to access content from the composer.json
Installs: 266
Dependents: 2
Suggesters: 1
Security: 0
Stars: 10
Watchers: 22
Forks: 12
Open Issues: 2
Requires
- composer/composer: *
- symfony/console: ~2.5
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-29 03:58:51 UTC
README
Extending the functionality of Composer is not that easy. There are several points, which make it harder to add functionality by external libraries.
This library adds some example code, how to add scripts, which are able to use composers internal structure. This could be wanted for custom installers or module managers, which use composer as base and want to offer additional commands which need things like information about libraries installed with composer.
Also this library offers a simple API to add own Commands similar to the Composer ones. Only difference is, we have an own script as entry point, which needs to be used.
All Commands added to the extra.composer-command-registry in your libraries composer.json get added to this entry point.
"extra":{ "composer-command-registry": [ "MagentoHackathon\\Composer\\Magento\\Command\\DeployCommand" ] }
As you see, this is an Array, so you can add more than one command per module.
To get a help message and see a list of available commands, simply call the binary:
php ./vendor/bin/composerCommandIntegrator.php
To execute an command, simply specify it as an argument. For example:
php ./vendor/bin/composerCommandIntegrator.php magento-module-deploy
Projects which implemented this
- Magento Composer Installer - installer for Magento Modules via Composer
Tests
phpunit