Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I remove completely PHPUnit using the PEAR Installer?

I installed PHPUnit using the PEAR installer a few days ago (I also installed Selenium RC for testing in PHP purpose). Now I want to uninstall it (also delete all related folders and files)

I ran the following command:

pear uninstall phpunit/PHPUnit

and the console displayed:

phpunit/PHPUnit not installed

I checked the PHPUnit folder, it was still there?

Was it uninstalled? I try to reinstall a new PHPUnit, but the console displayed:

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

How can I reinstall it?


Here's the output of pear list -c pear.phpunit.de:

pear list -c pear.phpunit.de

Here's output of pear list -c pear.phpunit.de:

pear list -c pear.phpunit.de

like image 818
Leo Lerdorf Avatar asked Jan 05 '12 09:01

Leo Lerdorf


2 Answers

I checked the PHPUnit folder, it was still there?

That might be because of sub-components (Extensions, Framework). However you must not be concerned about that.

To install the latest version, do the following two commands:

> pear config-set auto_discover 1
config-set succeeded

> pear upgrade
...

This will take some time, and will update all that is currently installed. As you have some extensions already available and the latest version of PHPUnit might require those, so update them to prevent failure in the next command:

> pear install pear.phpunit.de/PHPUnit

This should now install it:

Did not download optional dependencies: phpunit/PHP_Invoker, use --alldeps to download automatically
phpunit/PHPUnit can optionally use package "phpunit/PHP_Invoker" (version >= 1.0.0)
downloading PHPUnit-3.6.7.tgz ...
Starting to download PHPUnit-3.6.7.tgz (118,349 bytes)
..........................done: 118,349 bytes
install ok: channel://pear.phpunit.de/PHPUnit-3.6.7

Troubleshooting PEAR

As you reported in comments, this did not work out. Probably pear is in a state that it does not know where top and bottom is. Time to force. First, clear the cache:

> pear clear-cache
reading directory C:\...\Temp\pear\cache
0 cache entries cleared

Then force channel updates:

> pear channel-update -f pear.php.net
Updating channel "pear.php.net"
Update of Channel "pear.php.net" succeeded

> pear channel-update -f pear.phpunit.de
Updating channel "pear.phpunit.de"
Update of Channel "pear.phpunit.de" succeeded

Then force the phpunit install:

> pear install -a -f phpunit/PHPUnit
like image 154
hakre Avatar answered Nov 17 '22 08:11

hakre


As Google referenced this question as "how to REMOVE it", it seems important to answer the question.

As root, use:

pear list -c phpunit | grep stable | awk '{print "phpunit/"$1}' | xargs pear uninstall

Found this answer here

like image 6
Alain Tiemblo Avatar answered Nov 17 '22 09:11

Alain Tiemblo