我有一个作曲家问题,看起来像是因为更新到Windows 8.1而引起的。
每当我尝试composer update
或composer install
时,我都会收到以下错误:
[ErrorException]
zlib_decode(): data error
当我尝试composer diagnose
时,我得到了这个回复:
Checking composer.json: OK
Checking platform settings: FAIL
The xdebug extension is loaded, this can slow down Composer a little.
Disabling it when using Composer is recommended, but should not cause issues beyond slowness.
Checking git settings: OK
Checking http connectivity: OK
Checking disk free space: OK
Checking composer version: OK
我不确定为什么Checking platform settings
有FAIL
。这在哪里寻找?
我之前从未见过这个,所以我在Windows 8.1上遇到其他问题?
答案 0 :(得分:0)
检查平台设置失败,因为已加载xdebug扩展。但这不应该导致任何问题超出缓慢。如果你觉得你的作曲家很慢并且你没有使用xdebug,你可以将其停用(请参阅此处如何:https://stackoverflow.com/a/8754934/3219613)。 这与您的第一个错误无关。
请使用
检查zlib_decode扩展是否处于活动状态php -m
或者对于更多调试消息,请尝试
composer -vvv update