Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPUnit のバージョンは、Codeship の PHPUnit 4.3.5 です。しかし、PHPUnit 5.2 は現在の安定版リリース シリーズです。
Codeship で PHPUnit 5.2.5 を使用するにはどうすればよいですか?
「セットアップコマンド」セクションの前composer installにこれを追加するだけです:
composer install
composer global remove "phpunit/phpunit" --update-with-dependencies composer global require "phpunit/phpunit=5.*"
わたしにはできる!