我尝试使用。
全局安装composer
>composer global require phpunit/phpunit
但出于某种原因我不能,因为它已经安装在其他地方了。但不是作曲家。
我可以卸载phpunit并再次全局要求吗?
答案 0 :(得分:0)
全球安装的官方方式是here in the doc。
作为当前版本的示例:
$ wget https://phar.phpunit.de/phpunit-6.2.phar $ chmod +x phpunit-6.2.phar $ sudo mv phpunit-6.2.phar /usr/local/bin/phpunit $ phpunit --version
否则,您可以关注this article并从您的主目录启动 :
$ composer global require phpunit/phpunit $ export PATH=~/.composer/vendor/bin:$PATH $ which phpunit /Users/acme/.composer/vendor/bin/phpunit
希望这个帮助