PHPUnit 10.2.0 by Sebastian Bergmann and contributors. This version of PHPUnit requires PHP >= 8.1. You are using PHP 5.6.30 (C:\AppServ\php5\php.exe).
时间: 2024-03-03 10:47:15 浏览: 118
phpunit:PHP单元测试框架
根据 PHPUnit 的官方文档,PHPUnit 10.x 版本需要 PHP 版本大于等于 8.1。而你的 PHP 版本是 5.6.30,因此无法运行 PHPUnit 10.x。
你需要将 PHP 升级到 8.1 或更高版本,才能运行 PHPUnit 10.x。如果你的应用程序无法升级到 PHP 8.1,你可以使用 PHPUnit 9.x 版本,其要求的 PHP 版本为 7.3 或更高版本。你可以使用以下命令安装 PHPUnit 9.x 版本:
```
composer require --dev phpunit/phpunit ^9
```
这将安装最新的 PHPUnit 9.x 版本。在运行 PHPUnit 时,请确保使用正确的 PHP 版本。你可以在命令行中使用 `php -v` 命令查看当前 PHP 版本。
阅读全文