Composer SSL 报错

以前都在linux环境使用php composer。今天尝试在win7下运行composer却出现SSL报错:

D:\data\www\mmoyu\symapp>php -f %phprc%\composer install
Loading composer repositories with package information

  [Composer\Downloader\TransportException]
  The "https://packagist.org/packages.json" file could not be downloaded: SSL
   operation failed with code 1. OpenSSL Error messages:
  error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify
  failed
  Failed to enable crypto
  failed to open stream: operation failed

install [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--no-p
lugins] [--no-custom-installers] [--no-scripts] [--no-progress] [-v|vv|vvv|--ver
bose] [-o|--optimize-autoloader]

 

没有安装CA证书导致的!!!

CA证书下载地址:http://curl.haxx.se/docs/caextract.html

然后修改php.ini文件

openssl.cafile= D:/wamp/php/verify/cacert.pem

就OK了~

 

PS: 注意检查 cacert.pem 文件的正确性。

 

来源 https://my.oschina.net/yearnfar/blog/346727

posted @ 2017-03-06 16:57  Au_ww  阅读(439)  评论(0编辑  收藏  举报