@wp-playground/blueprints 3.0.22 → 3.0.32

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.
@@ -69,7 +69,8 @@
69
69
  "type": "object",
70
70
  "properties": {
71
71
  "intl": {
72
- "type": "boolean"
72
+ "type": "boolean",
73
+ "description": "Should boot with support for Intl dynamic extension"
73
74
  },
74
75
  "networking": {
75
76
  "type": "boolean",
@@ -173,7 +174,17 @@
173
174
  },
174
175
  "SupportedPHPVersion": {
175
176
  "type": "string",
176
- "enum": ["8.4", "8.3", "8.2", "8.1", "8.0", "7.4", "7.3", "7.2"]
177
+ "enum": [
178
+ "8.5",
179
+ "8.4",
180
+ "8.3",
181
+ "8.2",
182
+ "8.1",
183
+ "8.0",
184
+ "7.4",
185
+ "7.3",
186
+ "7.2"
187
+ ]
177
188
  },
178
189
  "ExtraLibrary": {
179
190
  "type": "string",
@@ -204,6 +215,9 @@
204
215
  },
205
216
  {
206
217
  "$ref": "#/definitions/BundledReference"
218
+ },
219
+ {
220
+ "$ref": "#/definitions/ZipWrapperReference"
207
221
  }
208
222
  ]
209
223
  },
@@ -352,6 +366,111 @@
352
366
  "required": ["resource", "path"],
353
367
  "additionalProperties": false
354
368
  },
369
+ "ZipWrapperReference": {
370
+ "type": "object",
371
+ "properties": {
372
+ "resource": {
373
+ "type": "string",
374
+ "const": "zip",
375
+ "description": "Identifies the resource as a ZIP wrapper"
376
+ },
377
+ "inner": {
378
+ "anyOf": [
379
+ {
380
+ "$ref": "#/definitions/FileReference"
381
+ },
382
+ {
383
+ "$ref": "#/definitions/DirectoryReference"
384
+ }
385
+ ],
386
+ "description": "The inner resource to wrap in a ZIP file"
387
+ },
388
+ "name": {
389
+ "type": "string",
390
+ "description": "Optional filename for the ZIP (defaults to inner resource name + .zip)"
391
+ }
392
+ },
393
+ "required": ["resource", "inner"],
394
+ "additionalProperties": false
395
+ },
396
+ "DirectoryReference": {
397
+ "anyOf": [
398
+ {
399
+ "$ref": "#/definitions/GitDirectoryReference"
400
+ },
401
+ {
402
+ "$ref": "#/definitions/DirectoryLiteralReference"
403
+ }
404
+ ]
405
+ },
406
+ "GitDirectoryReference": {
407
+ "type": "object",
408
+ "properties": {
409
+ "resource": {
410
+ "type": "string",
411
+ "const": "git:directory",
412
+ "description": "Identifies the file resource as a git directory"
413
+ },
414
+ "url": {
415
+ "type": "string",
416
+ "description": "The URL of the git repository"
417
+ },
418
+ "ref": {
419
+ "type": "string",
420
+ "description": "The ref (branch, tag, or commit) of the git repository"
421
+ },
422
+ "refType": {
423
+ "$ref": "#/definitions/GitDirectoryRefType",
424
+ "description": "Explicit hint about the ref type (branch, tag, commit, refname)"
425
+ },
426
+ "path": {
427
+ "type": "string",
428
+ "description": "The path to the directory in the git repository. Defaults to the repo root."
429
+ },
430
+ ".git": {
431
+ "type": "boolean",
432
+ "description": "When true, include a `.git` directory with Git metadata (experimental)."
433
+ }
434
+ },
435
+ "required": ["resource", "url", "ref"],
436
+ "additionalProperties": false
437
+ },
438
+ "GitDirectoryRefType": {
439
+ "type": "string",
440
+ "enum": ["branch", "tag", "commit", "refname"]
441
+ },
442
+ "DirectoryLiteralReference": {
443
+ "type": "object",
444
+ "additionalProperties": false,
445
+ "properties": {
446
+ "resource": {
447
+ "type": "string",
448
+ "const": "literal:directory",
449
+ "description": "Identifies the file resource as a git directory"
450
+ },
451
+ "files": {
452
+ "$ref": "#/definitions/FileTree"
453
+ },
454
+ "name": {
455
+ "type": "string"
456
+ }
457
+ },
458
+ "required": ["files", "name", "resource"]
459
+ },
460
+ "FileTree": {
461
+ "type": "object",
462
+ "additionalProperties": {
463
+ "anyOf": [
464
+ {
465
+ "$ref": "#/definitions/FileTree"
466
+ },
467
+ {
468
+ "type": ["object", "string"]
469
+ }
470
+ ]
471
+ },
472
+ "properties": {}
473
+ },
355
474
  "StepDefinition": {
356
475
  "type": "object",
357
476
  "discriminator": {
@@ -1321,84 +1440,6 @@
1321
1440
  }
1322
1441
  ]
1323
1442
  },
1324
- "DirectoryReference": {
1325
- "anyOf": [
1326
- {
1327
- "$ref": "#/definitions/GitDirectoryReference"
1328
- },
1329
- {
1330
- "$ref": "#/definitions/DirectoryLiteralReference"
1331
- }
1332
- ]
1333
- },
1334
- "GitDirectoryReference": {
1335
- "type": "object",
1336
- "properties": {
1337
- "resource": {
1338
- "type": "string",
1339
- "const": "git:directory",
1340
- "description": "Identifies the file resource as a git directory"
1341
- },
1342
- "url": {
1343
- "type": "string",
1344
- "description": "The URL of the git repository"
1345
- },
1346
- "ref": {
1347
- "type": "string",
1348
- "description": "The ref (branch, tag, or commit) of the git repository"
1349
- },
1350
- "refType": {
1351
- "$ref": "#/definitions/GitDirectoryRefType",
1352
- "description": "Explicit hint about the ref type (branch, tag, commit, refname)"
1353
- },
1354
- "path": {
1355
- "type": "string",
1356
- "description": "The path to the directory in the git repository. Defaults to the repo root."
1357
- },
1358
- ".git": {
1359
- "type": "boolean",
1360
- "description": "When true, include a `.git` directory with Git metadata (experimental)."
1361
- }
1362
- },
1363
- "required": ["resource", "url", "ref"],
1364
- "additionalProperties": false
1365
- },
1366
- "GitDirectoryRefType": {
1367
- "type": "string",
1368
- "enum": ["branch", "tag", "commit", "refname"]
1369
- },
1370
- "DirectoryLiteralReference": {
1371
- "type": "object",
1372
- "additionalProperties": false,
1373
- "properties": {
1374
- "resource": {
1375
- "type": "string",
1376
- "const": "literal:directory",
1377
- "description": "Identifies the file resource as a git directory"
1378
- },
1379
- "files": {
1380
- "$ref": "#/definitions/FileTree"
1381
- },
1382
- "name": {
1383
- "type": "string"
1384
- }
1385
- },
1386
- "required": ["files", "name", "resource"]
1387
- },
1388
- "FileTree": {
1389
- "type": "object",
1390
- "additionalProperties": {
1391
- "anyOf": [
1392
- {
1393
- "$ref": "#/definitions/FileTree"
1394
- },
1395
- {
1396
- "type": ["object", "string"]
1397
- }
1398
- ]
1399
- },
1400
- "properties": {}
1401
- },
1402
1443
  "InstallPluginOptions": {
1403
1444
  "type": "object",
1404
1445
  "properties": {