Composer 无法下载文件 [英] Composer cannot download files

查看:52
本文介绍了Composer 无法下载文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在命令行上使用作曲家:

I am trying to use composer on command line :

php composer.phar update
php composer.phar install
php composer.phar self-update
php composer.phar selfupdate

无论我做什么,我总是收到相同的错误消息:

Whatever I do I always receive the same error message:

无法下载文件.打不开直播

File could not be downloaded. Failed to open stream

我支持代理.如果我使用浏览器并键入与不能使用命令行的 URL 相同的 URL,则没有问题.

I am behind a proxy. If I use a browser and type the same URLs as the ones that didn't work with command line, there is no problem.

我该怎么办?

推荐答案

如果你在 HTTP 代理后面使用 composer,你可以使用标准的 http_proxyHTTP_PROXY环境变量.只需将其设置为代理的 URL.许多操作系统已经为您设置了这个变量.

If you are using composer from behind an HTTP proxy, you can use the standard http_proxy or HTTP_PROXY env vars. Simply set it to the URL of your proxy. Many operating systems already set this variable for you.

例如:

 HTTP_PROXY="http://my-corp-proxy.mcdonalds" php composer.phar install

如果您在 Linux/OS X 或 Windows 环境设置中将其放入 bashrc,则会获得奖励积分.

bonus points if you throw it into your bashrc if your on Linux/OS X or your environment settings for Windows.

为方便起见,您只需导出变量,就不必一直键入它.

To make it easier, you can just export the variable, then you don't have to type it all the time.

 export HTTP_PROXY="http://my-corp-proxy.mcdonalds"
 php composer.phar install

这篇关于Composer 无法下载文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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