Description
Hello. I see all your projects dependence on this package and this package use pclzip. I think pclzip is very slow solution in case of managing zip-archives. As alternative for this I can support using my package (https://github.com/wapmorgan/UnifiedArchive). It provides all needed functions to work with zip archives with very big speed gain (comparing to PclZip). Also, you don't need to change all things that work with archives, only initiation part. Let me show.
It provides PclZip-like interface for ZIP archives, so all you need is to change PclZip initiation
$archive = new PclZip("archive.zip");
to UA initiation and receiving PclZip-interface
$archive = UnifiedArchive::open('ziparchive.zip')->pclzipInteface();
That's all! After that speed of all archive operations will increase.
Take your time to think that and I can help you test your products and replace old requirements with modern ones.