如何在 Codeship 上更新 PHPUnit
How to update PHPUnit on Codeship
PHPUnit 版本是 Codeship 上的 PHPUnit 4.3.5。但 PHPUnit 5.2 是当前的稳定版本系列。
如何在 Codeship 上使用 PHPUnit 5.2.5?
只需在 "Setup Commands" 部分的 composer install
之前添加:
composer global remove "phpunit/phpunit" --update-with-dependencies
composer global require "phpunit/phpunit=5.*"
对我有用!
PHPUnit 版本是 Codeship 上的 PHPUnit 4.3.5。但 PHPUnit 5.2 是当前的稳定版本系列。
如何在 Codeship 上使用 PHPUnit 5.2.5?
只需在 "Setup Commands" 部分的 composer install
之前添加:
composer global remove "phpunit/phpunit" --update-with-dependencies
composer global require "phpunit/phpunit=5.*"
对我有用!