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 控制台命令?
基础教程推荐
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
