How do I run a Symfony Console command after composer install?(在作曲家安装后如何运行 Symfony 控制台命令?)
问题描述
我的 composer.json
包含以下声明:
My composer.json
contains the following declaration:
"post-install-cmd": [
"Incenteev\ParameterHandler\ScriptHandler::buildParameters",
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap",
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache",
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets",
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile"
],
我想运行 src/MyBundle/Command/MyCommand.php
中的自定义控制台命令.如何将其添加到脚本中以在 composer 中运行?
I want to run a custom console command that I have in src/MyBundle/Command/MyCommand.php
. How do I add this to the scripts to run in composer?
推荐答案
您可以看到 postinstall 挂钩如何为 Sensio DistributionBundle 工作.
You can see how the postinstall hook work for the Sensio DistributionBundle.
例如,您可以这样调用 Acme Demo 包的 Hello World
命令:
As example, this is how you can call the Hello World
command of the Acme Demo bundle:
ScriptHandler
<?php
namespace AcmeDemoBundleComposer;
use ComposerScriptCommandEvent;
class ScriptHandler extends SensioBundleDistributionBundleComposerScriptHandler {
/**
* Call the demo command of the Acme Demo Bundle.
*
* @param $event CommandEvent A instance
*/
public static function helloWorld(CommandEvent $event)
{
$options = self::getOptions($event);
$consoleDir = self::getConsoleDir($event, 'hello world');
if (null === $consoleDir) {
return;
}
// $extraParam = '';
// if (!$options['who']) {
// $extraParam = ' --who';
// }
static::executeCommand($event, $consoleDir, 'acme:hello', $options['process-timeout']);
}
}
您可以在 json 文件本身中管理额外的参数.
You can manage extra param in the json file itself.
composer.json
"post-install-cmd": [
"Incenteev\ParameterHandler\ScriptHandler::buildParameters",
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap",
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache",
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets",
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile",
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::removeSymfonyStandardFiles",
"Acme\DemoBundle\Composer\ScriptHandler::helloWorld"
],
测试
我扩展了版本的sensio-distribution bundle的ScriptHandler
类:
I extend the ScriptHandler
class of the sensio-distribution bundle of version:
sensio/distribution-bundle (v3.0.18)
希望有帮助
这篇关于在作曲家安装后如何运行 Symfony 控制台命令?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在作曲家安装后如何运行 Symfony 控制台命令?
基础教程推荐
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01