forked from ryanwelcher/advanced-query-loop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blueprint.json
52 lines (52 loc) · 1.16 KB
/
blueprint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"landingPage": "/wp-admin/post.php?post=59&action=edit",
"preferredVersions": {
"php": "8.0",
"wp": "latest"
},
"phpExtensionBundles": [ "kitchen-sink" ],
"features": {
"networking": true
},
"steps": [
{
"step": "login",
"username": "admin",
"password": "password"
},
{
"step": "installPlugin",
"pluginZipFile": {
"resource": "url",
"url": "https://downloads.wordpress.org/plugin/advanced-query-loop.zip"
},
"options": {
"activate": true
}
},
{
"step": "mkdir",
"path": "/wordpress/wp-content/plugins/cpts/"
},
{
"step": "writeFile",
"path": "/wordpress/wp-content/plugins/cpts/cpt-demo-plugin.php",
"data": {
"resource": "url",
"url": "https://raw.githubusercontent.com/ryanwelcher/advanced-query-loop/trunk/_blueprints/cpt-demo.php"
}
},
{
"step": "activatePlugin",
"pluginPath": "/wordpress/wp-content/plugins/cpts/"
},
{
"step": "importFile",
"file": {
"resource": "url",
"url": "https://raw.githubusercontent.com/ryanwelcher/advanced-query-loop/trunk/_blueprints/demo-content.xml"
}
}
]
}