{
	"$schema": "https://playground.wordpress.net/blueprint-schema.json",
	"landingPage": "/?p=1",
	"preferredVersions": {
		"php": "8.2",
		"wp": "latest"
	},
	"phpExtensionBundles": ["kitchen-sink"],
	"features": {
		"networking": true
	},
	"steps": [
		{
			"step": "login",
			"username": "admin",
			"password": "password"
		},
		{
			"step": "installPlugin",
			"pluginData": {
				"resource": "wordpress.org/plugins",
				"slug": "wp-post-rating"
			},
			"options": {
				"activate": true
			}
		},
		{
			"step": "runPHP",
			"code": "<?php require_once '/wordpress/wp-load.php'; $content = '<p>' . esc_html__( 'Try the star rating below.', 'wp-post-rating' ) . '</p>' . \"\\n\\n\" . '[wp_rating]'; $post_id = 1; if ( get_post( $post_id ) ) { wp_update_post( array( 'ID' => $post_id, 'post_content' => $content ) ); } else { wp_insert_post( array( 'post_title' => 'Post with star rating', 'post_content' => $content, 'post_status' => 'publish' ) ); } ?>"
		}
	]
}
