{
    "landingPage": "\/wp-admin\/plugins.php",
    "preferredVersions": {
        "php": "8.0",
        "wp": "latest"
    },
    "phpExtensionBundles": [
        "kitchen-sink"
    ],
    "features": {
        "networking": true
    },
    "steps": [
        {
            "step": "installPlugin",
            "pluginZipFile": {
                "resource": "url",
                "url": "https:\/\/downloads.wordpress.org\/plugin\/post-types-order.2.2.1.zip"
            },
            "options": {
                "activate": true
            }
        },
        {
            "step": "login",
            "username": "admin",
            "password": "password"
        },
        {
            "step": "runPHP",
            "code": "<?php include 'wordpress/wp-load.php'; wp_insert_post(array( 'post_title' => 'Post title 1', 'post_content' => 'Post content', 'post_status' => 'publish', 'post_author' => 1)); wp_insert_post(array( 'post_title' => 'Post title 2', 'post_content' => 'Post content', 'post_status' => 'publish', 'post_author' => 1)); wp_insert_post(array( 'post_title' => 'Post title 3', 'post_content' => 'Post content', 'post_status' => 'publish', 'post_author' => 1));"
        
        }
    ]
}