{
    "name": "adamgreenwell/guard-dog",
    "description": "Guard Dog is a WordPress plugin that allows a user to change the WordPress admin URL, enable two factor authentication and much more.",
    "type": "wordpress-plugin",
    "license": "GPL-2.0-or-later",
    "authors": [
        {
            "name": "Adam Greenwell",
            "email": "me@adamgreenwell.com"
        }
    ],
    "require": {
        "pragmarx/google2fa": "^8.0",
        "bacon/bacon-qr-code": "^3.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.6",
        "yoast/phpunit-polyfills": "^2.0",
        "mockery/mockery": "^1.6"
    },
    "scripts": {
        "test": "phpunit",
        "test:integration": "phpunit --testsuite integration",
        "test:unit": "phpunit --testsuite unit",
        "test:coverage": "phpunit --coverage-html tests/coverage/html",
        "i18n": "bash bin/generate-pot.sh",
        "build": [
            "@i18n",
            "bash bin/build-release.sh"
        ],
        "install:prod": "composer install --no-dev --optimize-autoloader",
        "install:dev": "composer install"
    },
    "autoload-dev": {
        "psr-4": {
            "GuardDog\\Tests\\": "tests/"
        }
    }
}