通过终端在linux上安装旧版本的phpunit

时间:2016-01-14 01:09:28

标签: php linux terminal phpunit

我正在尝试在仍使用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文档中看到如何通过终端进行此操作。

任何帮助表示赞赏。

- 谢谢。

1 个答案:

答案 0 :(得分:0)

在您composer global require "phpunit/phpunit=4.8.*"之后调用PHPUnit时,您确定实际使用~/.composer/vendor/bin/phpunit而不是phpunit上的$PATH二进制文件?