{
    "$schema": "https://playground.wordpress.net/blueprint-schema.json",
    "landingPage": "/?p=6",
    "preferredVersions": {
        "php": "8.1",
        "wp": "latest"
    },
    "phpExtensionBundles": ["kitchen-sink"],
    "steps": [
        {
            "step": "login",
            "username": "admin",
            "password": "password"
        },
        {
            "step": "installPlugin",
            "pluginZipFile": {
                "resource": "wordpress.org\/plugins",
                "slug": "responsive-block-control"
            },
            "options": {
                "activate": true
            }
        },
        {
            "step": "runPHP",
            "code": "<?php\ninclude 'wordpress/wp-load.php';\nwp_insert_post(array(\n'import_id' => 6,\n'post_title' => 'Responsive Block Control',\n'post_type' => 'page',\n'post_content' => '<!-- wp:paragraph {\"responsiveBlockControl\":{\"wide\":true,\"desktop\":true,\"tablet\":true,\"mobile\":false}} -->\n<p>Visible on Mobile</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"responsiveBlockControl\":{\"wide\":true,\"desktop\":true,\"mobile\":true}} -->\n<p>Visible on Tablet</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"responsiveBlockControl\":{\"wide\":true,\"tablet\":true,\"mobile\":true,\"desktop\":false}} -->\n<p>Visible on Desktop</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"responsiveBlockControl\":{\"desktop\":true,\"tablet\":true,\"mobile\":true,\"wide\":false}} -->\n<p>Visible on Wide</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>Current Viewport Size is: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"responsiveBlockControl\":{\"wide\":true,\"desktop\":true,\"tablet\":true}} -->\n<p><strong>Mobile</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"responsiveBlockControl\":{\"wide\":true,\"desktop\":true,\"mobile\":true}} -->\n<p><strong>Tablet</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"responsiveBlockControl\":{\"wide\":true,\"tablet\":true,\"mobile\":true,\"desktop\":false}} -->\n<p><strong>Desktop</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"responsiveBlockControl\":{\"desktop\":true,\"tablet\":true,\"mobile\":true,\"wide\":false}} -->\n<p><strong>Wide</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->',\n'post_status' => 'publish',\n'post_author' => 1\n));"
        }
    ]
}