We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 504fd42 commit f6b14adCopy full SHA for f6b14ad
src/Service/Validator.php
@@ -24,8 +24,10 @@ class Validator
24
const MAGENTO_SUPPORTED_SERVICE_VERSIONS = [
25
ServiceInterface::NAME_PHP => [
26
'<=2.2.4' => '>=7.0 <7.2', //'7.0.2|7.0.4|~7.0.6|~7.1.0',
27
- '>=2.2.5 <2.3.0' => '>=7.0 <7.2', //'~7.0.13|~7.1.0',
28
- '>=2.3.0' => '>=7.1 <7.3', //'~7.1.3 || ~7.2.0',
+ '>=2.2.5 <2.2.10' => '>=7.0 <7.2', //'~7.0.13|~7.1.0',
+ '>=2.2.10 <2.3.0' => '>=7.1 <7.3', //'~7.1.0|~7.2.0',
29
+ '>=2.3.0 <2.3.3' => '>=7.1 <7.3', //'~7.1.3 || ~7.2.0',
30
+ '>=2.3.3' => '>=7.1 <7.4', // '~7.1.3||~7.2.0||~7.3.0'
31
],
32
ServiceInterface::NAME_DB => [
33
'*' => '>=10.0 <10.3',
@@ -35,7 +37,8 @@ class Validator
35
37
36
38
ServiceInterface::NAME_VARNISH=> [
39
'<2.2.0' => '~3.5.0 || ^4.0',
- '>=2.2.0' => '^4.0 || ^5.0',
40
+ '>=2.2.0 <2.3.3'=> '^4.0 || ^5.0',
41
+ '>=2.3.3' => '^4.0 || ^5.0 || ^6.2',
42
43
ServiceInterface::NAME_REDIS => [
44
'*' => '~3.2.0 || ~4.0.0 || ~5.0.0',
0 commit comments