我正在通过'composer install'安装composer依赖项。 它下载了一堆软件包但是在swiftmailer之后它给了我错误
[UnexpectedValueException]
'C:\Users\DELL\Downloads\laravel-4\vendor/swiftmailer/swiftmailer/72e34d......54c82f.1' is not a zip archive.
这是什么意思?
答案 0 :(得分:0)
对我来说,这个问题是由于作曲家正在安装文件而发生的。 对我有用的工作是进入\ vendor \ composer \ autoload_real.php并注释掉以下行
require $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php';
然后再次运行作曲家
答案 1 :(得分:0)
使用--prefer-source选项运行composer install,为我解决了这个问题。