Composer cannot download files(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_proxy
或 HTTP_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 无法下载文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Composer 无法下载文件
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- Laravel 仓库 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01