How do I correctly install PHPUnit with PEAR?

前端 未结 8 813
甜味超标
甜味超标 2021-01-31 08:22

I have had to de- and reinstall a newer version of PHPUnit following these directions. Now when I\'m launching this line

sudo pear install --alldeps phpunit/PHPU         


        
8条回答
  •  太阳男子
    2021-01-31 08:59

    sudo pear install -a phpunit
    sudo pear channel-discover pear.phpunit.de
    

    I had similar problem complaining about "Unknown remote channel: pear.symfony.com". had to do (without sudo, I got weird error about cannot open some file)

    sudo pear channel-discover pear.symfony.com
    

    then

    sudo pear install phpunit/PHPUnit
    

    Now I can see phpunit in my /usr/bin

提交回复
热议问题