现在PEAR方法不再可能,如何为WAMP安装PhpUnit?

时间:2015-01-17 08:36:18

标签: php windows phpunit wampserver

所有说明都是关于PEAR method which is now deprecated

那么我们如何安装它才能从WAMP命令行运行phpUnit?

2 个答案:

答案 0 :(得分:4)

好的,Peter Popelyshko找到了解决方案。它是documented under the windows section

我做了一点简单:

1)将phpunit.phar文件复制到php目录eg. c:\wamp\bin\php\php5.4.12\,因为php目录已经在我的PATH环境中

2)在同一个dir中从命令行运行以下命令: echo @php "%~dp0phpunit.phar" %* > phpunit.cmd 手动创建包含以下内容的phpunit.cmd文件:@php "%~dp0phpunit.phar %*

3)打开一个新命令行并使用:phpunit --version

进行测试

应该返回PHPUnit x.y.z by Sebastian Bergmann.

答案 1 :(得分:2)

https://phpunit.de/manual/current/en/installation.html

使用composer安装 - windows部分。