{
    "name": "honest-hosting/site-migrator",
    "description": "HonestHosting Site Migrator WordPress plugin — migrate sites to HonestHosting via streamed, chunked, resumable exports.",
    "type": "wordpress-plugin",
    "license": "MIT",
    "minimum-stability": "stable",
    "prefer-stable": true,
    "require": {
        "php": ">=8.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.6",
        "wp-phpunit/wp-phpunit": "^7.0",
        "yoast/phpunit-polyfills": "^2.0",
        "squizlabs/php_codesniffer": "^3.8",
        "wp-coding-standards/wpcs": "^3.0",
        "phpcompatibility/phpcompatibility-wp": "^2.1",
        "automattic/vipwpcs": "^3.0",
        "php-stubs/wordpress-stubs": "^6.7",
        "phpstan/extension-installer": "^1.3",
        "phpstan/phpstan": "^1.10",
        "szepeviktor/phpstan-wordpress": "^1.3",
        "phpmd/phpmd": "^2.15",
        "dealerdirect/phpcodesniffer-composer-installer": "^1.0"
    },
    "autoload": {
        "psr-4": {
            "HonestHosting\\SiteMigrator\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "HonestHosting\\SiteMigrator\\Tests\\": "tests/"
        }
    },
    "config": {
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true,
            "phpstan/extension-installer": true
        },
        "sort-packages": true,
        "optimize-autoloader": true
    },
    "scripts": {
        "test": "phpunit",
        "test:unit": "phpunit --testsuite unit --testdox",
        "test:integration": "phpunit --testsuite integration --testdox",
        "test:verbose": "phpunit --verbose",
        "test:coverage": "phpunit --coverage-html=build/coverage --testdox",
        "cs:check": "phpcs --standard=phpcs.xml",
        "cs:fix": "phpcbf --standard=phpcs.xml",
        "analyze": ["@cs:check", "@analyze:phpstan", "@analyze:phpmd"],
        "analyze:phpstan": "phpstan analyse --configuration=phpstan.neon",
        "analyze:phpmd": "phpmd src text phpmd.xml",
        "build": ["@cs:check", "@analyze", "@test"]
    }
}
