{
  "$schema": "https://playground.wordpress.net/blueprint-schema.json",
  "landingPage": "/",
  "plugins": ["screen-reader-with-fontsize"],
  "login": true,
  "features": {
    "networking": true
  },
  "preferredVersions": {
    "php": "8.3",
    "wp": "latest"
  },
  "steps": [
    {
      "step": "setSiteOptions",
      "options": {
        "blogname": "Testing Screen Reader - WCAG Accessibility"
      }
    },
    {
      "step": "updateUserMeta",
      "meta": {
        "admin_color": "modern"
      },
      "userId": 1
    },
    {
      "step": "installPlugin",
      "pluginData": {
        "resource": "wordpress.org/plugins",
        "slug": "screen-reader-with-fontsize"
      },
      "options": {
        "activate": true
      }
    },
    {
      "step": "runPHP",
      "code": "<?php require_once 'wordpress/wp-load.php'; wp_insert_post(['post_title' => 'Accessibility Demo Page', 'post_content' => '<h1 class=\"main\">Welcome to Screen Reader Accessibility Demo</h1><p class=\"main\">This plugin makes your WordPress website fully accessible with AI-powered features!</p><h2>Key Accessibility Features</h2><p>Screen Reader helps visually impaired users navigate your site effortlessly with text-to-speech capabilities in over 50 languages.</p><ul><li><strong>Text to Speech Engine</strong> - Listen to page content with natural voice synthesis</li><li><strong>AI-Powered WCAG Fixes</strong> - ChatGPT integration to automatically fix accessibility issues</li><li><strong>High Contrast Modes</strong> - Multiple rendering options for better visibility</li><li><strong>Dyslexic Font</strong> - Special font transformation for easier reading</li><li><strong>Reading Guides</strong> - Focus tools to help follow text</li><li><strong>Dark Mode</strong> - Reduce eye strain with dark theme</li><li><strong>Font Sizing</strong> - Adjust text size for better readability</li><li><strong>Custom Colors</strong> - Personalize text and background colors</li></ul><h2>WCAG Compliance</h2><p>Meet global accessibility standards with ease. This plugin helps your website comply with WCAG specifications, making it accessible to everyone.</p><p><em>Note: The free version is limited to reading 300 characters. Upgrade to PRO for unlimited reading and all advanced features!</em></p>', 'post_status' => 'publish', 'post_type' => 'page']); wp_update_post(['ID' => 1, 'post_content' => '']); update_option('page_on_front', get_posts(['post_type' => 'page', 'title' => 'Accessibility Demo Page', 'posts_per_page' => 1])[0]->ID); update_option('show_on_front', 'page'); ?>"
    }
  ]
}