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

📅  最后修改于: 2022-03-11 14:53:53.575000             🧑  作者: 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",
    .....
},