作曲家完全禁用 https [英] composer to disable https completely

查看:32
本文介绍了作曲家完全禁用 https的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

my network does not work well with https, so doing

composer.phar install

throws

  [ComposerDownloaderTransportException]                                                         
  The "https://packagist.org/packages.json" file could not be downloaded: Failed to enable crypto  
  failed to open stream: operation failed  

i used

{
    "packagist": false
},
{
    "type": "composer",
    "url": "http://packagist.org",
    "options": {
        "ssl": {
            "verify_peer": "false"
        }
    }
}

as a http falback, but again it crashes in some other point:

Installing dependencies
  - Installing symfony/translation (v2.4.0)
    Downloading: 100%         
    Downloading: 100%         
    Downloading: 100%         



  [ComposerDownloaderTransportException]                                                                                                          
  The "https://api.github.com/repos/symfony/Translation/zipball/0919e0fc709217f8c9e5049f2603419fdd4a34ff" file could not be downloaded: Failed to   
  enable crypto                                                                                                                                     
  failed to open stream: operation failed               

my problem is just with TLSv1, previous SSL versions should work, as the browsers work correctly.

how should i do, the problem also exists in other cmd tools that depend on https like npm, bower, git, curl, ...

解决方案

composer config --global disable-tls true
composer config --global secure-http false

这篇关于作曲家完全禁用 https的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆