如何在Codeship上更新PHPUnit

时间:2016-02-15 09:59:00

标签: phpunit codeship

PHPUnit版本是Codeship上的PHPUnit 4.3.5。但PHPUnit 5.2是目前的稳定版本系列。

如何在Codeship上使用PHPUnit 5.2.5?

1 个答案:

答案 0 :(得分:1)

只需在"设置命令" 部分中composer install之前添加此内容:

composer global remove "phpunit/phpunit" --update-with-dependencies
composer global require "phpunit/phpunit=5.*"

对我有用!