@wp-playground/blueprints 3.1.21 → 3.1.25

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.
@@ -57,8 +57,20 @@
57
57
  "description": "The preferred PHP version to use. If not specified, the latest supported version will be used.\n\nNote: PHP 7.2 and 7.3 are deprecated and will be automatically upgraded to 7.4."
58
58
  },
59
59
  "wp": {
60
- "type": "string",
61
- "description": "The preferred WordPress version to use. If not specified, the latest supported version will be used"
60
+ "anyOf": [
61
+ {
62
+ "type": "string"
63
+ },
64
+ {
65
+ "type": "string",
66
+ "const": "latest"
67
+ },
68
+ {
69
+ "type": "boolean",
70
+ "const": false
71
+ }
72
+ ],
73
+ "description": "The preferred WordPress version to use, or `false` to boot a PHP-only Playground without downloading or installing WordPress. If not specified, the latest supported version will be used.\n\nWhen set to `false`, WordPress-specific Blueprint fields (`plugins`, `siteOptions`, `login`, and WordPress-only steps) are rejected at compile time."
62
74
  }
63
75
  },
64
76
  "required": ["php", "wp"],