我正在尝试在仍使用PHP 5.5.9的linux / vagrant环境中安装旧版本的phpunit
当前版本的phpunit需要PHP 5.6
我想使用phpunit版本4.8而不是5.1
我试过
composer global require "phpunit/phpunit=4.8.*"
但我还是得到了
This version of PHPUnit requires PHP 5.6; using the latest version of PHP is highly recommended.
我没有从phpunit文档中看到如何通过终端进行此操作。
任何帮助表示赞赏。
- 谢谢。
答案 0 :(得分:0)
在您composer global require "phpunit/phpunit=4.8.*"
之后调用PHPUnit时,您确定实际使用~/.composer/vendor/bin/phpunit
而不是phpunit
上的$PATH
二进制文件?