I ran this command to install globally PHPUnit:
composer global require 'phpunit/phpunit=3.7.*'
Now I want to uninstall globally PHPUnit.
Any ideas?
I ran this command to install globally PHPUnit:
composer global require 'phpunit/phpunit=3.7.*'
Now I want to uninstall globally PHPUnit.
Any ideas?
Also you can use another way
And in
composer.json
file remove some require positionsAfter all execute
composer update
This is a long way, but more clearTo remove a globally installed package run:
global
command lets you to run many commands likeinstall
,require
orupdate
as if you were running them from theCOMPOSER_HOME
directory.Read the related documentation here: http://getcomposer.org/doc/03-cli.md#global
COMPOSER_HOME
depends on your system (on Linux it's~/.composer
), see http://getcomposer.org/doc/03-cli.md#composer-home for more details.