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

1.2.1 2015-06-03 07:31 UTC

This package is auto-updated.

Last update: 2024-03-29 02:42:14 UTC


README

Build Status

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

Tests

phpunit