{
    "name": "ryanhellyer/disable-emojiis",
    "description": "WordPress plugin which disables the WordPress emoji functionality. GDPR friendly.",
    "type": "wordpress-plugin",
    "license": "GPL-2.0",
    "authors": [
        {
            "name": "ryanhellyer"
        }
    ],
    "require": {
        "php": ">=7.4"
    },
    "require-dev": {
        "phpstan/phpstan": "^1.12",
        "szepeviktor/phpstan-wordpress": "^1.3",
        "friendsofphp/php-cs-fixer": "^3.95",
        "squizlabs/php_codesniffer": "^4.0",
        "phpunit/phpunit": "^13.1",
        "wpreadme2markdown/wpreadme2markdown": "^4.1"
    },
    "scripts": {
        "phpcs": "phpcs --report=full -s && echo \"No violations found.\"",
        "phpcbf": "phpcbf",
        "cs": "php-cs-fixer fix --dry-run --diff",
        "cs:fix": "php-cs-fixer fix",
        "phpstan": "phpstan analyse --configuration=phpstan.neon",
        "test": "phpunit",
        "generate-readme": "php bin/generate-readme.php",
        "dotorg_build": "rm -f disable-emojis.zip && zip -r disable-emojis.zip disable-emojis.php src/ readme.txt license.txt -x '*/.git/*' '*/tests/*' '*/bin/*' '*/vendor/*' 'composer.*' 'phpcs*' 'phpstan*' 'phpunit*' '.php-*' '.git*' '.github/*' README.md"
    },
    "autoload-dev": {
        "psr-4": {
            "RyanHellyer\\DisableEmojis\\Tests\\": "tests/"
        }
    },
    "autoload": {
        "psr-4": {
            "RyanHellyer\\DisableEmojis\\": "src/"
        }
    }
}
