php安装pear和phpunit
http://hi.baidu.com/zjutxujie/item/7b08761f922df7476926bb2c
安装pear
-
下载go-pear.phar,放到phproot/pear目录下,地址http://pear.php.net/go-pear.phar。
-
管理员身份运行cmd,打开phproot,运行php -d phar.require_hash=0 PEAR/go-pear.phar。
-
选择local->yes->Enter->Y。php.ini中会自动添加include_path=".;phproot\pear"。
-
运行pear list显示package列表,检查pear是否安装成功。
安装phpunit
-
打开phproot,运行pear channel-discover pear.phpunit.de。
-
运行pear install phpunit/PHPUnit,如果显示No releases available for package "pear.phpunit.de/PHPUnit",运行pear clear-cache。
-
如果显示phpunit/PHPUnit requires package "channel://pear.symfony-project.com/YAML",运行pear channel-discover pear.symfony-project.com。
-
如果显示Did not download optional dependencies: phpunit/PHP_Invoker,运行pear install --alldeps --force phpunit/PHPUnit,会显示warning: phpunit/PHP_Invoker requires PHP extension "pcntl"。
-
运行phpunit -version检查phpunit是否安装成功。
安装Selenium
-
在phproot下运行pear install phpunit/PHPUnit_Selenium,会显示phpunit/PHPUnit_Selenium requires PHP extension "curl"。
-
将phproot下的三个文件php_curl.dll(在phproot/ext下),libeay32.dll,ssleay32.dll复制到system32下,将php.ini中的;extension=php_curl.dll中的分号去掉。
-
重新运行pear install phpunit/PHPUnit_Selenium,显示安装成功