{
  "landingPage": "/wp-admin/post-new.php?post_type=offcanvas-block",
  "preferredVersions": {
    "php": "8.2",
    "wp": "latest"
  },
  "phpExtensionBundles": [
    "kitchen-sink"
  ],
  "steps": [
    {
      "step": "login",
      "username": "admin",
      "password": "password"
    },
    {
      "step": "wp-cli",
      "command": "wp eval '$content = base64_decode(\"aGVsbG8gd29ybGQ=\"); $post_data = array(\"post_title\" => \"Home\", \"post_content\" => $content, \"post_status\" => \"publish\", \"post_type\" => \"page\"); $post_id = wp_insert_post($post_data); if (is_wp_error($post_id)) { echo \"Error: \" . $post_id->get_error_message(); } else { echo \"Created page ID: \" . $post_id; }'"
    },
    {
      "step": "wp-cli",
      "command": "wp post create --post_type=page --post_status=publish --post_title=\"Home\" --post_content=\"\" --porcelain"
    },
    {
      "step": "setSiteOptions",
      "options": {
        "show_on_front": "page",
        "page_on_front": 3
      }
    },
    {
      "step": "wp-cli",
      "command": "wp post create --post_type=page --post_status=publish --post_title=\"Blog\" --post_content=\"\" --porcelain"
    },
    {
      "step": "setSiteOptions",
      "options": {
        "page_for_posts": 3
      }
    },
    {
      "step": "wp-cli",
      "command": "wp post create --post_type=page --post_status=publish --post_title=\"Blog\" --post_content=\"\" --porcelain"
    },
    {
      "step": "setSiteOptions",
      "options": {
        "page_for_posts": 3
      }
    },
    {
      "step": "installPlugin",
      "pluginData": {
        "resource": "wordpress.org/plugins",
        "slug": "offcanvas-block"
      },
      "options": {
        "activate": true
      }
    }
  ]
}