You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 25, 2020. It is now read-only.
I have a project where I create a Zip file, with several files inside. This zip file is available for some time, and in this time the contents of the files inside can be changed/renamed and so on, so I need to delete the file from the zipfile, while the new file will be compiled.
But currently the files are not removed, but the new files are inserted without problem.
I use it like this:
$zipper = Zipper::make($pathAndFilename);
$zipper->remove($filenameToRemove);
$zipper->close();
other information: laravel 5.4, version of the package: 1.0.2, forge provisioned server with ubuntu and Nginx