wamp环境下运行composer的坑

今天在用composer安装laravel时报错

The openssl extension is required for SSL/TLS protection but is not availab le. If you can not enable the openssl extension, you can disable this error , at your own risk, by setting the 'disable-tls' option to true.

网上说是OpenSSL没有打开的问题,打开php.ini,启用插件并设置相应的证书,然后重启Apache。
理论上来说,走到这一步应该没什么问题了,phpinfo();里也有OpenSSL的扩展,但是报错依旧。

研究后发现,composer判断OpenSSL的依据是:当前环境变量下的php目录下的php.ini文件,但是wamp下php.ini文件实际上对应的是php目录下的phpForApache.ini而不是php.ini,所以把phpForApache.ini里的内容全部复制到php.ini,再次运行composer install就没有报错了。

    原文作者:wangshantao
    原文地址: https://segmentfault.com/a/1190000017789339
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞