Created
April 6, 2012 07:07
-
-
Save pasela/2317847 to your computer and use it in GitHub Desktop.
PHPUnitとか使いそうなもの一式入れるコマンドの覚書
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget http://pear.php.net/go-pear.phar | |
php go-pear.phar | |
pear update-channels | |
pear clear-cache | |
pear upgrade | |
pear config-set auto_discover 1 | |
pear install pear.pdepend.org/PHP_Depend | |
pear install pear.phpmd.org/PHP_PMD | |
pear install pear.phpunit.de/PHPUnit | |
pear install pear.phpunit.de/phpcpd | |
pear install pear.phpunit.de/phploc | |
pear install PHP_CodeSniffer | |
pear install PhpDocumentor | |
pear install pear.phing.info/phing |
PEARをlocalインストールする場合は
cd /path/to/php # /usr/local/php-5.4.9 とか C:\php-5.4.9 とか
wget http://pear.php.net/go-pear.phar
php go-pear.phar # systemかlocalか聞かれたらlocalにする
こんな感じかな
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Windows版のPHP 5.4入れてみたらgo-pear.batとかついてなかったのでそこから。