{
    "name": "attributeswp/attributes-user-access",
    "description": "Attributes User Access is a lightweight and flexible authentication solution for WordPress designed for greater control over login processes.",
    "type": "wordpress-plugin",
    "license": "GPL-3.0-or-later",
    "authors": [
        {
            "name": "Attributes WP",
            "homepage": "https://attributeswp.com"
        }
    ],
    "require": {
        "php": ">=7.4",
        "composer/installers": "^2.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.5",
        "brain/monkey": "^2.6",
        "mockery/mockery": "^1.5",
        "squizlabs/php_codesniffer": "^3.7",
        "wp-coding-standards/wpcs": "^2.3",
        "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
        "phpcompatibility/phpcompatibility-wp": "^2.1",
        "yoast/phpunit-polyfills": "^1.0",
        "phpstan/phpstan": "^1.8"
    },
    "config": {
        "allow-plugins": {
            "composer/installers": true,
            "dealerdirect/phpcodesniffer-composer-installer": true
        },
        "optimize-autoloader": true,
        "sort-packages": true
    },
    "autoload": {
        "psr-4": {
            "Attributes\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Attributes\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "phpunit",
        "test:coverage": "phpunit --coverage-html build/coverage",
        "phpcs": "phpcs --standard=phpcs.xml",
        "phpcbf": "phpcbf --standard=phpcs.xml",
        "phpstan": "phpstan analyse",
        "prepare-release": [
            "composer install --no-dev --optimize-autoloader",
            "@test",
            "npm run build"
        ],
        "make-pot": "wp i18n make-pot . languages/attributes-user-access.pot --exclude=vendor,node_modules,tests",
        "lint": [
            "@phpcs",
            "@phpstan"
        ],
        "fix": [
            "@phpcbf"
        ]
    },
    "support": {
        "issues": "https://github.com/attributeswp/attributes-user-access/issues",
        "source": "https://github.com/attributeswp/attributes-user-access",
        "docs": "https://attributeswp.com/docs"
    },
    "minimum-stability": "stable",
    "prefer-stable": true
}