@wp-playground/blueprints 3.1.19 → 3.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -175,7 +175,7 @@
175
175
  "BlueprintPHPVersion": {
176
176
  "anyOf": [
177
177
  {
178
- "$ref": "#/definitions/SupportedPHPVersion"
178
+ "$ref": "#/definitions/AllPHPVersion"
179
179
  },
180
180
  {
181
181
  "type": "string",
@@ -188,10 +188,24 @@
188
188
  ],
189
189
  "description": "PHP versions accepted in Blueprint schema. Includes deprecated versions (7.2, 7.3) which are automatically upgraded to 7.4 during compilation."
190
190
  },
191
+ "AllPHPVersion": {
192
+ "anyOf": [
193
+ {
194
+ "$ref": "#/definitions/SupportedPHPVersion"
195
+ },
196
+ {
197
+ "$ref": "#/definitions/LegacyPHPVersion"
198
+ }
199
+ ]
200
+ },
191
201
  "SupportedPHPVersion": {
192
202
  "type": "string",
193
203
  "enum": ["8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.4"]
194
204
  },
205
+ "LegacyPHPVersion": {
206
+ "type": "string",
207
+ "enum": ["5.2"]
208
+ },
195
209
  "ExtraLibrary": {
196
210
  "type": "string",
197
211
  "const": "wp-cli"