$ sudo pear install phpunit/PHPUnit
Unknown remote channel: pear.symfony-project.com
phpunit/PHPUnit requires package "channel://pear.symfony-project.com/YAML" (version >= 1.0.2)
phpunit/PHPUnit can optionally use PHP extension "xdebug" (version >= 2.0.5)
No valid packages found
install failed

What do I need to do to be able to install PHPUnit?

link|improve this question

65% accept rate
feedback

1 Answer

up vote 9 down vote accepted

Have you registered the channel required to install YAML?

pear channel-discover pear.symfony-project.com

Depending on how pear is installed and configured, you may need to preface the command with "sudo" to run it as root.

From the PHPUnit manual:

The PEAR channel (pear.phpunit.de) that is used to distribute PHPUnit needs to be registered with the local PEAR environment. Furthermore, a component that PHPUnit depends upon is hosted on the Symfony Components PEAR channel (pear.symfony-project.com).

link|improve this answer
that didn't work for me, this was the message: pear channel-discover pear.symfony-project.com Discovering channel pear.symfony-project.com over http:// failed with message: channel-add: temp_dir is not writable: "/usr/local/temp" - You can change this location with "pear config-set temp_dir" Trying to discover channel pear.symfony-project.com over https:// instead Discovery of channel "pear.symfony-project.com" failed (channel-add: temp_dir is not writable: "/usr/local/temp" - You can change this location with "pear config-set temp_dir") – Andrew Jan 5 '10 at 17:39
nevermind, it worked when I prepended with "sudo" – Andrew Jan 5 '10 at 17:41
superuser.com may not be the best place to ask question regards sf2 and since there isn't yet any efficient way to receive support with symfony 2 I think the following proposal is a very good idea! - A new Q&A site for symfony2 - Please join & spread the word! – Xuni Nov 20 '11 at 10:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.