user385762
user385762

Reputation: 591

upgrade phpunit windows

I want to install PHPUnit 3.7 on my windows server. I followed the various instructions here and ended up with PHPUnit 3.4.1. When I try to install it again using:

pear update channels
pear install --alldeps phpunit/PHPUnit

I get:

phpunit/PHPUnit is already installed and is the same as the released version 3.4.15
install failed

I know that 3.4.15 is not the latest version... How can I convince PEAR that it should find an upgrade somewhere?

Upvotes: 7

Views: 3271

Answers (4)

taxicala
taxicala

Reputation: 21759

Did you by any chance cleared the cache?

pear clear-cache

and then update the channels, and install phpUnit. If that fails, clear the cache, uninstall completly phpUnit, and then install it again.

Upvotes: 0

Beniston
Beniston

Reputation: 542

I tried this and succeeded.

pear upgrade --alldeps phpunit/phpunit

If the above doesn't work for you, try the below:

pear upgrade --alldeps --force phpunit/phpunit

Upvotes: 0

Brad Orego
Brad Orego

Reputation: 3116

You probably want the --force (or -f) option on pear install:

pear install -a -f phpunit/PHPUnit

I was running into problems with PHPUnit until I found this post

Upvotes: 2

Theodore R. Smith
Theodore R. Smith

Reputation: 23231

Try this:

pear upgrade-all
pear upgrade phpunit/PHPUnit

Upvotes: 1

Related Questions