我尝试安装像:
这样的作曲家 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
如何解决此问题?
答案 0 :(得分:-1)
您可以通过添加-k。
来禁用ssl验证curl -ksS https://getcomposer.org/installer | php