安装PHPUnit

根据官方说明:

引用
The PEAR channel (pear.phpunit.de) that is used to distribute PHPUnit needs to be registered with the local PEAR environment. Furthermore, components that PHPUnit depends upon are hosted on additional PEAR channels.

pear channel-discover pear.phpunit.de
pear channel-discover components.ez.no
pear channel-discover pear.symfony-project.com

This has to be done only once. Now the PEAR Installer can be used to install packages from the PHPUnit channel:

pear install phpunit/PHPUnit


可能需要做如下改动:

1. 由于你本机存在的pear基础包可能版本过旧,需要先执行
pear upgrade.

2. 为了安装phpunit以来的pear包,请将pear install phpunit/PHPUnit更改为
pear install -a phpunit/PHPUnit
这样可以安装所有依赖包。安装依赖包时候还可能提示pecl包的依赖,如:XML_RPC2要求curl,所以有必要需要重新编译php(windows开启php_curl.so扩展)

安装成功应该生成一个可运行的phpunit脚本
 
3. 如果是windows下执行上述脚本,Structures/Graph pear包安装不了,不得不去官方下载压缩包手工解压缩,然后执行执行pear upgrade更新到最新版本继续安装php。
如果使用php5.3应使用phar机制update pear包,这样应该不会有问题


安装好之后再php安装目录下新增了phpunit.bat, 命令行运行会给出参数用法,如果想在其他目录运行phpunit.bat,需要新增一个环境变量:PHPBIN=d:\programs\php\php.exe.
对于Linux则不用如此设置。


你可能感兴趣的:(PHP,linux,xml,windows,脚本)