-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
[PHP 7.4] Versioning of ext-json #31
Comments
I think that having For Does this make sense to you? |
@lcobucci Yeah, it does 👍 I'll open the PR. |
I'd recommend always specifying builtin extensions as |
That's a good point @nikic. I'm fine with |
Up to PHP 7.3, the
json
extension used to follow its own versioning.Now, in
PHP 7.4
+, it is following the same as other extensions: PHP's version number:json
: https://3v4l.org/1NjFHreflection
: https://3v4l.org/ca9vSFor reference: php/php-src#4459
@lcobucci How can we solve this? Adding
|| ^7.4
or replacing it with*
when declaringext-json
in the requirements of Composer?The text was updated successfully, but these errors were encountered: