当我执行时:
composer install
我得到以下输出:
Loading composer repositories with package informati
Installing dependencies (including require-dev)
[ComposerDownloaderTransportException]
The "http://packagist.org/p/phpunit/phpunit$abafcd02d9793416c76c78da3f1fafa0bc4da3ac1acec5c80e51d7904589ea30.json"
file could not be downloaded: send of 103 bytes failed with errno=10053
An established connection was aborted by the software installed on the host-computer.
(...)
在网络级别上,我看到服务器发送带有RST(重置(平面设置的TCP数据包。
有人知道这里出了什么问题吗?
我的配置:
- Windows 8.1
- Apache 2.4
- PHP 5.5.11
- PEAR版本:1.9.4
php.ini:
extension=php_openssl.dll
allow_url_fopen = On
allow_url_include = On
卸载我电脑上的K9 Web Protection软件是解决我问题的方法。
我找到了解决方案。我不能100%确定这两件事中的哪一件有效,但它一定是其中之一:
1(我在安全模式下启动(使用网络(。
在安全模式下,我运行:
composer install
工作良好。
2(仍然处于安全模式下,我在CCleaner应用程序(这是一个免费应用程序(中运行了一个注册表修复工具,并使用了clean选项。
然后我在正常的Windows8模式下启动,删除了在安全模式下创建的供应商目录和composer.lock文件。
之后:
composer install
在Windows8中运行良好。最后
编辑:虚假的希望。不幸的是,它在很长一段时间内都不起作用。问题仍然存在!