magento-hackathon/composer-command-integrator
Composer 安装命令:
composer require 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
README 文档
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
统计信息
- 总下载量: 296
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 3
其他信息
- 授权协议: OSL-3.0
- 更新时间: 2018-07-20