pearのproxy設定とPHPUnitのインストール
メモ。
▽ pearのproxy設定
▽ PHPUnitインストール
PHPUnit公式ページ
https://github.com/sebastianbergmann/phpunit/
初回のインストール作業
▽ Ubuntuの場合
▽ pearのproxy設定
# 設定確認
pear config-get http_proxy
# XXXXX:xxxxを設定
pear config-set http_proxy XXXXX:xxxx
▽ PHPUnitインストール
PHPUnit公式ページ
https://github.com/sebastianbergmann/phpunit/
初回のインストール作業
pear channel-discover pear.phpunit.de
pear channel-discover components.ez.no
pear channel-discover pear.symfony-project.com
pear install phpunit/PHPUnit
▽ Ubuntuの場合
sudo apt-get install phpunit# 阿呆になりますな・・・


