Closed DanBrada closed 2 years ago
PHP 8 has deprecated opening empty files for opening zip. This is caused by deprection in libzip 1.6.0. This PR mitigates the issue by changing method of opening ZIP files from ZipArchive::CREATE to ZipArchive::OVERWRITE
ZipArchive::CREATE
ZipArchive::OVERWRITE
Relevant PHP commit Relevant PHP bug report
Thanks for your contribution! Released as version 2.0.2
2.0.2
PHP 8 has deprecated opening empty files for opening zip. This is caused by deprection in libzip 1.6.0. This PR mitigates the issue by changing method of opening ZIP files from
ZipArchive::CREATE
toZipArchive::OVERWRITE
Relevant PHP commit Relevant PHP bug report