Swiftmailer错误生成器安装



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

[UnexpectedValueException]
'C:UsersDELLDownloadslaravel-4vendor/swiftmailer/swiftmailer/72e34d......54c82f.1' is not a zip archive. 

这是什么意思?

对我来说,这个问题是因为订单编写器正在安装文件。对我来说有效的方法是进入\vendor\comporter\autoload_real.php并注释掉下面的行

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

然后再次运行composer

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

相关内容

  • 没有找到相关文章

最新更新