インストール方法
wgetコマンドのインストール
既にインストール済みの場合は飛ばす
1 |
yum install wget |
phpunitのインストール
最新バージョン
1 |
wget https://phar.phpunit.de/phpunit.phar |
指定のバージョン
1 |
wget https://phar.phpunit.de/phpunit-4.8.36.phar -O phpunit.phar |
上記のコマンドの「phpunit-4.8.36.phar」の部分を指定バージョンに書き換える
バージョンは下記のサイトに一覧が記載されている
ファイルの権限、移動
1 2 |
chmod 777 phpunit.phar mv phpunit.phar /usr/local/bin/phpunit |