How can I remove completely PHPUnit using the PEAR Installer?

18,224

Solution 1

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

Solution 2

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

Share:
18,224
Leo Lerdorf
Author by

Leo Lerdorf

Updated on June 20, 2022

Comments

  • Leo Lerdorf
    Leo Lerdorf almost 2 years

    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

  • Leo Lerdorf
    Leo Lerdorf over 12 years
    I took your guide but at the second command (pear install pear.phpunit.de/PHPUnit) the console still displayed as the last time: No releases available for package "pear.phpunit.de/PHPUnit" install failed
  • hakre
    hakre over 12 years
    okay, that's borked. Edorian posted something for windows, let me search for that answer.
  • hakre
    hakre over 12 years
    @LeoLerdorf: I extended the answer. A related question is Windows Installing PHPUnit via PEAR - Installing PHPUnit via PEAR.
  • hakre
    hakre over 11 years
    @zerkms: Which off all have you tried? If you want come to PHP chat and/or create a new question where you outline your issue.
  • zerkms
    zerkms over 11 years
    @hakre: well, I've found that it also depends on php version (though it doesn't state it explicitly)
  • hakre
    hakre over 11 years
    @zerkms: Well which PHP versions you talk about specifically?
  • hakre
    hakre over 11 years
    @zerkms: Doesn't have PHP 5.3.2 known bugs? I mean I would not expect that to work actually.