使用composer.json中定义的Composer脚本,如何显示phpunit颜色?

时间:2017-06-14 16:36:59

标签: php phpunit composer-php

上下文

我使用composer.json文件中定义的Composer脚本在我的应用程序中运行单元测试。

我的composer.json

{
    "name": "my company/my_application",
    "description": "Description of my application",
    "license": "my licence",
    "require": {
        "php": ">=5.6",
        "ext-soap": "*",
        "ext-ssh2": "*",
        "ext-curl": "*",
        "ext-zip": "*",
        "ext-pdo_mysql": "*",
        "ext-gettext": "*",
        "dusank/knapsack": "^9.0"
    },
    "require-dev": {
        "ext-mysqli": "*",
        "phpunit/phpunit": "^5.7",
        "squizlabs/php_codesniffer": "2.*"
    },
    "scripts": {
        "test-php": "vendor/bin/phpunit --colors --verbose --bootstrap tests/bootstrap.php --configuration tests/phpunit.xml",
    }
}

我的命令是:

vendor/bin/phpunit --colors --verbose --bootstrap tests/bootstrap.php --configuration tests/phpunit.xml tests/

问题

如果我在终端内运行vendor/bin/phpunit --colors --verbose --bootstrap tests/bootstrap.php --configuration tests/phpunit.xml tests/,我可以看到彩色输出。但如果我使用Composer运行它,我就看不到任何颜色。

问题

使用composer.json中定义的Composer脚本,如何显示phpunit颜色?

1 个答案:

答案 0 :(得分:3)

要强制phpunit在任何情况下显示颜色,请将=always添加到--color参数。

使用

vendor/bin/phpunit --colors=always --verbose --bootstrap tests/bootstrap.php --configuration tests/phpunit.xml tests/

在我的composer.json文件中,我可以看到颜色。