How to uninstall a pear package?
pear, php
Solution
pear uninstall [options] [channel/]<package>
So if you wanted to uninstall PHPUnit
pear uninstall phpunit/PHPUnit
Note: remember to preface with `sudo` or you won't have permission to uninstall anything.
Problem
What is the command to uninstall a pear package?