1

我正在通过“composer install”安装作曲家依赖项。它下载了一堆包,但是在 swiftmailer 之后它给了我错误

[UnexpectedValueException]
'C:\Users\DELL\Downloads\laravel-4\vendor/swiftmailer/swiftmailer/72e34d......54c82f.1' is not a zip archive. 

这是什么意思?

4

2 回答 2

0

使用 --prefer-source 选项运行 composer install ,为我解决了这个问题。

于 2013-07-31T05:17:51.053 回答
0

对我来说,这个问题是由于作曲家正在安装文件而发生的。对我有用的解决方法是进入 \vendor\composer\autoload_real.php 并注释掉以下行

require $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php';

然后再次运行作曲家

于 2013-07-23T09:53:05.710 回答