Zend framework で PHPUnit を統合したテスト環境を構築したときのメモ。
まずチャネルのアップデートと既存の PEAR ライブラリの更新を念のためしておく。
# pear channel-update pear.php.net # pear upgrade-all
次に PEAR に PHPUnit のためのチェンネルを追加する。チャンネルの値は PHPUnit のホームページで一応確認を。
# pear channel-discover pear.phpunit.de # pear channel-discover pear.symfony-project.com
PHPUnit をインストール。
# pear install phpunit/PHPUnit # pear install --alldeps phpunit/phpUnderControl-beta
xdebug PECL ライブラリもインストール。
# pecl install xdebug