The openssl extension is required for SSL/TLS protection but is not available

汪高岑
2023-12-01

在使用 composer 更新软件包的时候,报了上述错误。
问题原因: php (准确说是 php-cli) openssl 扩展没有开启。
解决方法: 使用 php -ini 查看 php-cli 位置,打开 extension=openssl 或者 extension=php-openssl 前的注释就可以了。

另外记录一下在查找过程中遇到的 composer 小知识点:
1、composer require 和 update 的区别:

#require 命令需要指定版本号
composer require hashids/hashids:2.0.0

#update 命令需要在 composer.json 中指定软件包的版本号
composer update zoujingli/ip2region

2、如何查看指定软件包的最新可用版本

#查看软件包的最新可用版本
composer show zoujingli/ip2region -i

# 查看本地软件包版本
composer show -i

参考:
https://blog.csdn.net/qq_36110571/article/details/103633318

 类似资料:

相关阅读

相关文章

相关问答