通过 PEAR 安装 PHPUnit

2022-08-30 08:24:26

我在通过 PEAR 1.9.0 安装 PHPUnit 3.4.6 时遇到问题。发现通道 pear.phpunit.de 并尝试使用以下命令之一后:

pear install phpunit/PHPUnit

pear install --alldeps phpunit/PHPUnit

pear install --onlyreqdeps phpunit/PHPUnit

它失败了,给我以下错误:

没有可用于软件包“pear.phpunit.de/PHPUnit”的版本

安装失败

我从有相同问题的人那里发现了几个线程,但是将PEAR升级到最新版本通常对他们有用。此外,似乎没有安装PHPUnit for Windows的教程。

编辑:

我还尝试将prefered_state更改为测试版;没有帮助。

我还尝试获取所有可用软件包的列表:

pear remote-list -c phpunit

它给了我另一个错误:

无法下载非 http URL“/c/categories.xml”


答案 1

我有同样的问题,试试:

pear clear-cache

答案 2

我昨天遇到了同样的问题,并通过更新频道解决了这个问题

pear clear-cache
pear update-channels

在尝试安装 phpUnit 之前。

希望这有帮助。


推荐