Laravel - Composer 在更新平台后检测到问题

Laravel - Composer detected issues in your platform after updating it(Laravel - Composer 在更新平台后检测到问题)
本文介绍了Laravel - Composer 在更新平台后检测到问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我刚刚使用命令composer self-update --2更新了composer,但是,现在我的 Web 应用程序显示错误 Composer 在您的平台中检测到问题:您的 Composer 依赖项需要 PHP 版本>= 7.3.0".

So i just updated composer using the command composer self-update --2, However, now my web application shows the error Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 7.3.0".

我不明白这是因为执行 php -v 给了我 PHP 7.4.13

I dont understand this because doing php -v gives me PHP 7.4.13

我该如何解决这个问题?

How can I fix this?

推荐答案

您的终端用户的PHP版本可能与服务器的版本不同.

Your terminal user's PHP version may differ from the server's version.

您可能在终端上拥有 7.4.13,而在 apache2 或您使用的任何服务器中拥有完全不同的 PHP 版本.

You may have 7.4.13 on terminal while having a completely different PHP version in apache2 or whatever server you are using.

在 PHP 文件中使用 phpinfo(); 并通过浏览器访问它以查看实际的 PHP 版本.

Use phpinfo(); in a PHP file and access it via browser to see the actual PHP version.

这篇关于Laravel - Composer 在更新平台后检测到问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)