1

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

如何在 Codeship 上使用 PHPUnit 5.2.5?

4

1 回答 1

1

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

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

这个对我有用!

于 2016-02-15T09:58:59.657 回答