-
-
Notifications
You must be signed in to change notification settings - Fork 18
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
Added php8.1 support #14
Conversation
Signed-off-by: Shankar Konar <konar.shankar2013@gmail.com>
e9cd5f4
to
86c7fec
Compare
Hello @ihor-sviziev |
First of all - keep the php 7.3 and 7.4 support as there no reason for dropping support without any changes in code. After that, phpcs tests should pass |
I have readded the php 7.3 and 7.4 support |
Signed-off-by: Shankar Konar <konar.shankar2013@gmail.com>
d61e662
to
69837fd
Compare
Signed-off-by: Shankar Konar <konar.shankar2013@gmail.com>
composer.json
Outdated
@@ -25,13 +25,13 @@ | |||
} | |||
}, | |||
"require": { | |||
"php": "^7.3 || ~8.0.0", | |||
"php": "^7.3 || ^7.4 || ~8.0.0 || ~8.1.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^7.4
is not needed, it is already in range
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have removed the 7.4 version
Signed-off-by: Shankar Konar <konar.shankar2013@gmail.com>
Description
Declared php 8.1 support
magento/magento2#34242