我有Windows 07 64位操作系统,我已经下载了作曲家以及我正在运行的wampserver wampserver2.2e-php5.3.13-httpd2.2.22-mysql5.5.24-x64.exe。我曾尝试使用composer安装PHPUnit但不能。我在linux / mac os上找到了安装步骤,但在windows中找不到。有些网站建议在php项目的composer.json文件中添加对phpunit / phpunit的依赖。但是怎么样?我不知道。 请帮助我在wampserver(Windows 07-64位操作系统)或任何替代品上使用composer安装PHPUnit ..
答案 0 :(得分:13)
您在Linux或OSX上执行的操作完全相同。
来自http://www.phpunit.de/manual/current/en/installation.html#installation.composer
的文档。
{
"require-dev": {
"phpunit/phpunit": "3.7.*"
}
}
并运行php composer.phar install --dev
。
对于系统范围的安装,您可以:
{
"name": "phpunit",
"description": "PHPUnit",
"require": {
"phpunit/phpunit": "3.7.*"
},
"config": {
"bin-dir": "C:/my/dir"
}
}
并将目录添加到您的窗口$PATH
。