The openssl extension is required for SSL/TLS protection but is not available. If you can not enable
通过composer下载laravel的时候报的这个错误
先查看php.ini文件里开启ssl扩展没有
extension=php_openssl.dll 前面的注释打开
因为SSL连接需要认证,所以继续下面的步骤之前,需要准备好CA证书(建议把证书保存到C:\php-5.6.24\verify
目录中),可以从https://curl.haxx.se/docs/caextract.html处下载。
接下来,定位到
;openssl.cafile=
和上面一样,删去分号,取消注释,设置CA证书为openssl.cafile= C:\php-5.6.24\verify\cacert.pem
。