thinkphp5.0 安装think-queue composer 报错 版本不符
浅笑19
3218 阅读
0 评论
0 点赞
因为 think-queue 最新版本支持的tp版本是6所以5.0无法安装;
解决方法如下:
在composer.json的require节点内添加
"topthink/think-queue": "^2.0"然后执行
composer update
然后就可以正常安装think-queue了
来源:oschina
链接:https://my.oschina.net/u/152351/blog/3192359