- laravel/framework[v8.75.0, ..., 8.x-dev] require league/flysystem ^1.1 -> satisfiable by league/flysystem[1.1.0, ..., 1.x-dev].
时间: 2024-02-18 08:02:44 浏览: 79
apache-tomcat-8.5.75.tar.gz
It looks like you are trying to install the Laravel framework version 8.75.0 or higher, which has a dependency on the `league/flysystem` package version 1.1 or higher. However, it seems that the package version you have installed or are trying to install does not meet this requirement.
To resolve this issue, you can try updating the `league/flysystem` package to a version that is compatible with Laravel 8.75.0 or higher. You can do this by running the following command:
```
composer require league/flysystem:^1.1
```
This will install the latest compatible version of the `league/flysystem` package with your Laravel version. After that, you should be able to install the Laravel framework without any issues.
阅读全文