phpunit 在Linux或MacOSX上安装

示例

使用PHP存档进行全局安装

wget https://phar.phpunit.de/phpunit.phar        # download the archive file
chmod +xphpunit.phar                           # make it executable
sudo mvphpunit.phar/usr/local/bin/phpunit      # move it to /usr/local/bin
phpunit --version                                # show installed version number

使用Composer进行全局安装

# If you have composer installed system wide
composer global require phpunit/phpunit  # set PHPUnit as a global dependency
phpunit --version                        # show installed version number

# If you have the .phar file of composer
phpcomposer.pharglobal require phpunit/phpunit  # set PHPUnit as a global dependency
phpunit --version                                 # show installed version number

使用Composer进行本地安装

# If you have composer installed system wide
composer require phpunit/phpunit  # set PHPUnit as a local dependency
./vendor/bin/phpunit --version    # show installed version number

# If you have the .phar file of composer
phpcomposer.pharrequire phpunit/phpunit  # set PHPUnit as a local dependency
./vendor/bin/phpunit --version             # show installed version number