📌  相关文章
📜  根 composer.json 需要 php ^7.2.5 但您的 php 版本 (8.0.6) 不满足该要求. - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:32.750000             🧑  作者: Mango

代码示例3
It's becouse in your project in composer.json file you have:

"require": {
    "php": ">=7.3",
    .....
},
Try to update this requirement to:

"require": {
    "php": "^7.3|^8.0",
    .....
},