I would like to downgrade my installation of PHPUnit 3.4 to 3.3. I'm just not sure how to do it.
How do I install version 3.3 of PHPUnit on Ubuntu using PEAR?
|
|
|
You need to know the exact version number you wish to downgrade to. At the time of writing, the last release you're after is 3.3.17, which can be found out by checking the appropriate PEAR channel. To downgrade to that particular version execute two commands:
|
|||||||||||||
|
|
Note that if you wish to downgrade from a 3.6.x release to 3.5.15 (final stable 3.x release), then you need to uninstall, then reinstall several dependencies manually. Otherwise pear will just force install the latest version of PHPUnit. Here's how:(Original instructions from Dusty Reagan's blog: http://dustyreagan.com/downgrade-phpunit-3-6-to-3-5-15/. duplicated to SO in case original link dies for some reason.) First you need to uninstall PHPUnit 3.6 and all of it’s dependencies.
Next install these specific versions of each dependency, in this order, installing PHPUnit-3.5.15 last.
Note: You may need to add channel for PHP_CodeCoverage, which doesn't seem to be obligatory for PHPUnit 3.6
|
|||||
|
|
If you get the error
|
|||
|
|
|
I don't know if it's always possible using PEAR alone. When I had to downgrade a package before, the old version was no longer available in the channel. I uninstalled the package I wanted to downgrade, downloaded the old version, and installed from the downloaded file. |
|||
|
|
|
As to downgrading from 3.6.x to 3.5.15, it works fine for me in the following order: Uninstallation of 3.6
Installation of 3.5.15
I have found the solution HERE. |
|||
|
|