无法为 Symfony 项目安装 Mercure

Can't install Mercure for Symfony project

我尝试按照 mercure 和 symfony 的文档找到 here 但总是遇到错误。

第一部分:

>composer require mercure 

工作没有问题,但当我尝试执行第二个时,我总是遇到同样的错误。

第二个动作:

> mercure --jwt-key='!ChangeMe!' --addr='localhost:3000' --allow-anonymous --cors-allowed-origins='*'

错误:

time="2020-12-08T17:35:14+01:00" level=info msg="Mercure started" addr="'localhost:3000'" protocol=http
time="2020-12-08T17:35:14+01:00" level=fatal msg="listen tcp: lookup tcp/3000': getaddrinfow: The specified class was not found."

我以前从未使用过 Mercure,所以我不知道该怎么做...请帮忙

如果你在 windows 上工作,你必须像这样创建一个 bat 文件 (mercureScript.bat) :

set JWT_KEY=!ChangeMe!
set ADDR=localhost:3000
set ALLOW_ANONYMOUS=1
set CORS_ALLOWED_ORIGINS=*
.\mercure.exe

还有 运行 : .\mercureScript.bat

希望对您有用!