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
When a PHAR needs to be compressed it will require a dependency on the compression algorithm used for building the PHAR and executing the PHAR. The user may not have the necessary extension and Box should fail gracefully in this case.
Phar::GZ => requires the zlib extension
Phar::BZ2 => requires the bz2 extension
The text was updated successfully, but these errors were encountered:
…ithm is not loaded (#205)
- Add a warning in the documentation and the logs of the `compile` command regarding the extension required to execute a PHAR once compressed
- Handle the compression in `Box` instead of using the leaked `Box#phar`
- Make `Box` countable
- A few minor refactoring bits
Closes#186
When a PHAR needs to be compressed it will require a dependency on the compression algorithm used for building the PHAR and executing the PHAR. The user may not have the necessary extension and Box should fail gracefully in this case.
Phar::GZ
=> requires thezlib
extensionPhar::BZ2
=> requires thebz2
extensionThe text was updated successfully, but these errors were encountered: