{
    "name": "ads-destroyer/ads-destroyer-new",
    "description": "Modern WordPress plugin to hide admin advertising blocks using XPath rules - completely rewritten with modern practices",
    "type": "wordpress-plugin",
    "license": "GPL-2.0-or-later",
    "authors": [
        {
            "name": "Alex Kovalevv",
            "email": "alex@example.com"
        }
    ],
    "keywords": [
        "wordpress",
        "plugin",
        "ads",
        "adblock",
        "xpath",
        "admin",
        "clean"
    ],
    "require": {
        "php": ">=8.0",
        "masterminds/html5": "^2.8"
    },
    "require-dev": {
        "phpstan/phpstan": "^1.10",
        "squizlabs/php_codesniffer": "^3.8",
        "phpunit/phpunit": "^10.0"
    },
    "autoload": {
        "psr-4": {
            "AdsDestroyer\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "AdsDestroyer\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "dump-autoload": "composer dump-autoload --optimize",
        "phpstan": "phpstan analyse src --level=8",
        "phpcs": "phpcs --standard=WordPress src",
        "phpcbf": "phpcbf --standard=WordPress src",
        "test": "phpunit",
        "lint": [
            "@phpcs",
            "@phpstan"
        ],
        "fix": "@phpcbf"
    },
    "config": {
        "optimize-autoloader": true,
        "sort-packages": true,
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true
        }
    },
    "minimum-stability": "stable",
    "prefer-stable": true
}
