I have problems installing PHPUnit 3.4.6 via PEAR 1.9.0. After I discover channel pear.phpunit.de and try to use one of following commands:

pear install phpunit/PHPUnit

pear install --alldeps phpunit/PHPUnit

pear install --onlyreqdeps phpunit/PHPUnit

it fails, giving me following error:

No releases available for package "pear.phpunit.de/PHPUnit"

install failed

I found several threads from people with the same problem, but upgrading PEAR to the newest version usually worked for them. Also there seems to be close to no tutorials for installing PHPUnit for Windows.

EDIT:

I've also tried to change prefered_state to beta; didn't help.

I've also tried to get list of all available packages:

pear remote-list -c phpunit

It gives me another error:

Cannot download non-http URL "/c/categories.xml"

link|improve this question

What's the result of pear remote-list -c phpunit ? – VolkerK Jan 5 '10 at 14:58
Cannot download non-http URL "/c/categories.xml" – Ondrej Slinták Jan 7 '10 at 9:32
feedback

9 Answers

up vote 37 down vote accepted

I had the same problem yesterday, and solved it by updating the channels

pear update-channels

before trying to install phpUnit.

Hope this helps.

link|improve this answer
Helped. Thanks a lot! – Ondrej Slinták Jan 15 '10 at 9:36
This solved a similar issue I had installing phpunit 3.5. Thanks. – Devon Jan 28 '11 at 0:59
14  
This + cell's idea of pear clear-cache is what worked for me. +1 to each of you!!! – AlienWebguy Jul 25 '11 at 23:09
feedback

I had the same problem, try:

pear clear-cache
link|improve this answer
Perfect, thanks! – Kevin Peno Jul 14 '11 at 18:35
Worked for me. Thanks! – Venkat D. Oct 2 '11 at 19:25
Excellent, this is what did it for me too +1 – xenon May 4 at 0:25
feedback

It simply installs me when I type:

pear channel-discover pear.phpunit.de
pear install --onlyreqdeps phpunit/PHPUnit

maybe there is a problem with the versions, you must set the preferred_state of the pear packages to different than stable:

pear config-set preferred_state beta
link|improve this answer
Still the same problem. – Ondrej Slinták Jan 7 '10 at 9:35
Thanks, your clues helped me :) – faramka Feb 24 at 7:58
feedback

I had the same problem. this worked for me:

sudo pear clear-cache
sudo pear channel-discover pear.phpunit.de
sudo pear channel-discover pear.symfony-project.com
pear install --alldeps phpunit/PHPUnit
link|improve this answer
Only one that worked for me 11-29-11 – jchapa Nov 29 '11 at 23:38
Had the same problem as Ondrej (but without the categories.xml error) and this worked a treat! Many thanks. – Duncan Jan 23 at 18:52
feedback

What is the full error message output? It failed for me until I installed using the --alldeps option and ran pear channel-discover pear.symfony-project.com

sudo pear channel-discover pear.phpunit.de
sudo pear channel-discover pear.symfony-project.com
sudo pear install --alldeps phpunit/PHPUnit
link|improve this answer
Still the same problem. – Ondrej Slinták Jan 7 '10 at 9:37
can you edit your original post with the full error message you get when running sudo pear install --alldeps phpunit/PHPUnit ? – ctshryock Jan 7 '10 at 14:01
Ok, edited original post. I cannot (or not sure how to) use "sudo" (I'm a Windows user), but I'm administrator, so it shouldn't be a problem. – Ondrej Slinták Jan 8 '10 at 12:11
feedback

I tried

pear update-channels

as suggested by Davide above, but that gave me the error

Channel pear.php.net does not support xml-rpc method channel.listAll

For some reason, it worked when I ran

pear channel-update pear.phpunit.de 
link|improve this answer
feedback

You need to also discover the ezcomponents channel using pear channel-discover components.ez.no

In total:

sudo pear channel-discover pear.phpunit.de
sudo pear channel-discover pear.symfony-project.com
sudo pear channel-discover components.ez.no
sudo pear install --alldeps phpunit/PHPUnit

You can have a quick sanity check is to run phpunit from the cli and see if the command is recognized.

link|improve this answer
feedback

I have same problem with phpunit instalation. Try using Synaptic package manager for PHPUnit instalation.

sudo pear install pear # upgrade pear first

#install php unit with synaptic manager

phpunit --version # get version of phpunit
link|improve this answer
feedback

Thanks for the help here guys.

I had struggled for ages with getting ZEND etc to work on XAMPP on Windows Vista. For reference, this is how I solved it: -

Couldn't update PEAR then I realised it's default path setting were wrong, I correct this guide...

http://david-franklin.net/programming/installing-pear-phpunit-on-windows/

Then I managed to get PHPUNIT installed with the "pear clear_cache" command thanks to this thread then ran "pear install phpunit/PHPunit".

Thanks a lot and I hope what I wrote above will serve as a quick code for those in a similar predicament (it tooks me 2 whole days to get it working!!!)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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