如何通过PEAR安装phpunit后获得phpunit.bat?

时间:2011-03-14 16:47:10

标签: php netbeans phpunit pear

我需要一个phpunit.bat来配置我的NetBeans IDE。

我正在使用wamp,我只是使用这些说明通过pear安装phpunit:

在开始使用PEAR之前,通过从http://pear.php.net/go-pear.phar下载最后一个go-pear进行更新并将其保存到:C:\ wamp \ bin \ php \ php5.3.3 \ PEAR

然后:

cd C:\wamp\bin\php\php5.3.0>
php -d phar.require_hash=0 PEAR/go-pear.phar
pear channel-discover pear.phpunit.de
pear channel-discover components.ez.no
pear channel-discover pear.symfony-project.com
pear install phpunit/PHPUnit

完成后我找不到任何phpunit.bat或phpunit.php

如何通过PEAR安装phpunit后获得phpunit.bat(或任何CLI)?

1 个答案:

答案 0 :(得分:21)

类型:

pear config-show

寻找PEAR executables directory

您的phpunit.bat将会在那里。

如果不是:

pear install --alldeps --force phpunit/phpunit

再看一遍。