{
  "name": "passkey/wordpress-plugin",
  "description": "A WordPress plugin that adds secure passkey authentication using WebAuthn to the WordPress login page.",
  "type": "wordpress-plugin",
  "license": "GPL-2.0-or-later",
  "authors": [
    {
      "name": "Multidots",
      "email": "info@multidots.com",
      "homepage": "https://www.multidots.com"
    }
  ],
  "keywords": [
    "wordpress",
    "plugin",
    "passkey",
    "webauthn",
    "authentication",
    "security"
  ],
  "homepage": "https://github.com/your-username/passkey",
  "support": {
    "issues": "https://github.com/your-username/passkey/issues",
    "source": "https://github.com/your-username/passkey"
  },
  "require": {
    "php": "^8.1",
    "web-auth/webauthn-framework": "^4.9",
    "laminas/laminas-diactoros": "^3.0"
  },
  "require-dev": {
    "phpunit/phpunit": "^10.5",
    "squizlabs/php_codesniffer": "^3.9",
    "phpcompatibility/php-compatibility": "^9.3"
  },
  "autoload": {
    "psr-4": {
      "MDLOGIN_Passkey\\": "includes/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "MDLOGIN_Passkey\\Tests\\": "tests/"
    }
  },
  "scripts": {
    "test": "phpunit",
    "phpcs": "phpcs --standard=WordPress includes/",
    "phpcbf": "phpcbf --standard=WordPress includes/",
    "build": "composer install --no-dev --optimize-autoloader --classmap-authoritative && composer clean-vendor",
    "clean-vendor": "find vendor/ -name 'tests' -type d -exec rm -rf {} + 2>/dev/null || true && find vendor/ -name '*.md' -type f -delete 2>/dev/null || true && find vendor/ -name '* *' -type f -delete 2>/dev/null || true",
    "post-install-cmd": [
      "composer dump-autoload --optimize --no-dev --classmap-authoritative"
    ],
    "post-update-cmd": [
      "composer dump-autoload --optimize --no-dev --classmap-authoritative"
    ]
  },
  "config": {
    "allow-plugins": {
      "dealerdirect/phpcodesniffer-composer-installer": true
    },
    "platform": {
      "php": "8.1"
    },
    "sort-packages": true,
    "optimize-autoloader": true,
    "classmap-authoritative": true
  },
  "minimum-stability": "stable",
  "prefer-stable": true
}
