PHPUnit版本是Codeship上的PHPUnit 4.3.5。但PHPUnit 5.2是目前的稳定版本系列。
如何在Codeship上使用PHPUnit 5.2.5?
答案 0 :(得分:1)
只需在"设置命令" 部分中composer install
之前添加此内容:
composer global remove "phpunit/phpunit" --update-with-dependencies
composer global require "phpunit/phpunit=5.*"
对我有用!