5

我正在尝试安装 PHPUnit_Invoker。我在pear install phpunit/PHP_Invoker命令行上运行命令。我收到这条消息:

软件包“pear.phpunit.de/PHP_Invoker”没有可用的版本

我已经在 Windows 机器上安装了 PHPUnit 和 PEAR。有人也面临类似的问题吗?

我又试了一次,我在控制台中收到了这条消息:

phpunit/PHP_Invoker 需要 PHP 扩展“pcntl”找不到有效的包安装失败

4

3 回答 3

6

PHP_Invoker 所需的 PHP 扩展“PCNTL”(进程控制)目前在非 Unix 平台 (Windows) 上不起作用。

来源:http ://www.php.net/manual/en/pcntl.installation.php (2013 年 1 月 31 日)

于 2013-01-31T18:32:38.100 回答
3

尝试 :

>pear config-set auto_discover 1
>pear clear-cache
>pear install pear.phpunit.de/PHPUnit

我有同样的问题,但似乎已经在 Windows 7 上安装了 WAMP

于 2013-01-10T02:02:01.057 回答
1

“力”应该做的工作

pear install --alldeps --force phpunit/PHPUnit
于 2013-04-29T18:32:25.913 回答