How do I correctly install PHPUnit with PEAR?(如何使用 PEAR 正确安装 PHPUnit?)
问题描述
我不得不在 这些方向.现在当我启动这条线时
I have had to de- and reinstall a newer version of PHPUnit following these directions. Now when I'm launching this line
sudo pear install --alldeps phpunit/PHPUnit
我看到一条错误消息,如下所示.
I see an error message, that looks like this.
Unknown remote channel: pear.symfony.com
phpunit/PHPUnit requires package "channel://pear.symfony.com/Yaml" (version >= 2.1.0)
No valid packages found
如果我通过启动只安装 Yaml
If I install just Yaml by launching
sudo pear install symfony/YAML
将安装不符合 PHPUnit 依赖关系的旧版本 (1.0.6).我怎么可能解决这个问题?
an older version (1.0.6) will be installed that doesn't meet the dependency of PHPUnit. How can I possibly solve this?
推荐答案
我在升级 phpunit 时遇到了同样的问题.
I had the same problem while upgrading my phpunit.
这解决了问题:
pear channel-discover pear.symfony.com
pear install pear.symfony.com/Yaml
然后运行:
pear install --alldeps pear.phpunit.de/PHPUnit
OBS:我认为 pear install pear.symfony.com/Yaml
不是必需的.我只是发布它,因为这正是我解决问题的方式.
OBS: I think the pear install pear.symfony.com/Yaml
is not necessary. I'm just posting it because it is exactly the way I solved my problem.
这篇关于如何使用 PEAR 正确安装 PHPUnit?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 PEAR 正确安装 PHPUnit?


- SoapClient 设置自定义 HTTP Header 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- Laravel 仓库 2022-01-01