如何删除 PHPUnit?

如何删除 PHPUnit?

我使用 PHAR 全局安装了 PHPUnit 5.1:

wget https://phar.phpunit.de/phpunit.phar
chmod +x phpunit.phar
sudo mv phpunit.phar /usr/local/bin/phpunit

这是我运行时收到的消息phpunit --version

此版本的 PHPUnit 需要 PHP 5.6;强烈建议使用最新版本的 PHP。

我现在意识到 PHPUnit 5.1 需要 PHP 5.6(14.04 只支持 PHP 5.5.9 以上版本)。我正在使用 PHP 5.5.9,不想升级到下一个版本。

如何彻底删除 PHPUnit 5.1?我的目标是使用旧版本的 PHPUnit (4.8)。

参考:https://phpunit.de/manual/current/en/installation.html

答案1

您仅移动(并重命名)了一个文件。因此

sudo rm -r /usr/local/bin/phpunit

为什么-r?因为/usr/local/bin/phpunit也可能是一个文件夹。

相关内容