如何在Windows中安装PCNTL扩展?

问题描述 投票:11回答:2

我在Windows中运行PHPUnit并尝试通过composer.json安装PHPUnit:

"phpunit/php-invoker": "*"

...有这种依赖,但我得到这个错误:

phpunit / php-invoker 1.1.3需要ext-pcntl * - >系统中缺少所请求的PHP扩展pcntl。

我该如何安装此扩展程序?

windows phpunit pcntl
2个回答
15
投票

您无法在Windows上安装ext-pcntl扩展。根据PHP文档:

目前,该模块不能在非Unix平台(Windows)上运行。

如果你想安装PHPUnit,你只需要PHPUnit库:

composer require phpunit/phpunit 4.*

你不需要php-invoker来安装PUPUnit。但如果你还需要php-invoker库,那你就不走运了。尝试使用Vagrant或普通虚拟机与Linux发行版,如Ubuntu,Debian或Mint。


2
投票

如果你在没有家园的Windows 10上运行,你可以启用linux子系统并运行你的代码。

https://www.windowscentral.com/how-install-bash-shell-command-line-windows-10

然后安装要求

sudo apt安装php7.2-fpm php7.2-mbstring php7.2-xmlrpc php7.2-soap php7.2-gd php7.2-xml php7.2-cli php7.2-zip php7.2-mysql

这也可以运行laravel特使和地平线,它不适用于Windows。

这是一个很好的轻量级解决方案

© www.soinside.com 2019 - 2024. All rights reserved.