Can't install PHPUnit via PEAR, requires PEAR Installer >= 1.9.2, can't upgrade PEAR from 1.9.0

后端 未结 2 743
无人共我
无人共我 2020-11-29 10:59

I read the other PHPUnit installation questions but haven\'t had any success. What is going on with my PEAR install?

$ sudo pear update-channels
Updating cha         


        
2条回答
  •  时光取名叫无心
    2020-11-29 11:52

    If you are not successful with the pear part have a look at this.

    wget https://phar.phpunit.de/phpunit.phar
    chmod +x phpunit.phar
    mv phpunit.phar /usr/local/bin/phpunit
    

    ref: http://phpunit.de/manual/3.7/en/installation.html

    You can also immediately use the PHAR after you have downloaded it;

    wget https://phar.phpunit.de/phpunit.phar
    php phpunit.phar
    

提交回复
热议问题