如何使用OpenSSL协议Composer修复错误?

时间:2017-05-01 14:15:07

标签: php macos ssl composer-php macos-sierra

我尝试安装像:

这样的作曲家

curl -sS https://getcomposer.org/installer | php

它给我一个错误:

The openssl extension is missing, which means that secure HTTPS transfers are impossible. If possible you should enable it or recompile php with --with-openssl尽管有扩展,但在PHP中启用了OpenSSL。

我可以在phpinfo()中看到:

PHP Version 5.6.30

OpenSSL support enabled
OpenSSL Library Version LibreSSL 2.2.7
OpenSSL Header Version  LibreSSL 2.2.7
Openssl default config  /private/etc/ssl/openssl.cnf

如何解决此问题?

1 个答案:

答案 0 :(得分:-1)

您可以通过添加-k。

来禁用ssl验证
curl -ksS https://getcomposer.org/installer | php