-
-
Notifications
You must be signed in to change notification settings - Fork 100
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
PHAR minimal requirements #164
Milestone
Comments
just a thought: isn't it also possible to keep the files uncompressed? so zip would be optional. not sure if an uncompressed phar can be executed without the zip extension |
Yes, this is why Composer does not compress theirs
…On Fri 27 Apr 2018 at 01:27, Julian ***@***.***> wrote:
just a thought: isn't it also possible to keep the files uncompressed? so
zip would be optional. not sure if an uncompressed phar can be executed
without the zip extension
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#164 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AE76gWk38X224vYkEV7wafSSPyzTERWRks5tsmXvgaJpZM4Tj8gF>
.
|
theofidry
added a commit
to theofidry/box
that referenced
this issue
Apr 28, 2018
When a PHAR is compressed, it also requires the PHP extension `zip`. Closes box-project#164
theofidry
added a commit
that referenced
this issue
Apr 28, 2018
When a PHAR is compressed, it also requires the PHP extension `zip`. Closes #164
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The extension
ext-phar
will always be necessary for the PHAR and as such should be included in the requirements whether or not it is declared in thecomposer.json
require
section.If the PHAR is compressed, the
zip
extension is also required, but it is likely that PHP will not be able to even execute it without it anyway so to be check if it's worth it or notThe text was updated successfully, but these errors were encountered: