-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compressing/decompressing files/directories #602
Comments
Thinking out loud, I'm wondering about the performance of using PHP for compression compared to tools like I’ve made some helpers for this, but they depend on |
@pyrech Do you think of PHP implementation with phar class, or with process using tar, gunzip, etc ? |
I think it would be better to use native binaries when available (but that would not works for Windows). Maybe we could have a PHP fallback for some formats, for example, with the PHP ZipArchive class (this requires the PHP extension zip though). |
Let's go :) |
Should we add some helpers to compress and decompress files or directories?
The text was updated successfully, but these errors were encountered: