composer.json 是这么写的:
{
"require": {
"monolog/monolog": "2.0.*"
}
}
Problem 1
- Root composer.json requires monolog/monolog 2.0.* -> satisfiable by monolog/monolog[2.0.0, 2.0.1, 2.0.2].
- monolog/monolog[2.0.0, ..., 2.0.2] require php ^7.2 -> your php version (8.0.10) does not satisfy that requirement.
这种情况下, 除了升级 monolog 的版本, 或者使用 php 7 的版本之外,还有什么解决办法吗?