{
  "name": "dwnload/wp-settings-api",
  "description": "A PHP class abstraction that removes all the headaches of the WordPress settings API under the hood and builds a nice options panel on the fly.",
  "license": "MIT",
  "authors": [
    {
      "name": "Austin Passy",
      "email": "thefrosty@users.noreply.github.com",
      "homepage": "https://austin.passy.co",
      "role": "Developer"
    }
  ],
  "config": {
    "allow-plugins": {
      "composer/installers": true,
      "dealerdirect/phpcodesniffer-composer-installer": true,
      "roots/wordpress-core-installer": true
    },
    "optimize-autoloader": true,
    "platform": {
      "php": "8.0"
    },
    "sort-packages": true
  },
  "minimum-stability": "dev",
  "require": {
    "php": "^8.0",
    "ext-json": "*",
    "thefrosty/wp-utilities": "^3.0"
  },
  "require-dev": {
    "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
    "inpsyde/php-coding-standards": "dev-development",
    "phpunit/php-code-coverage": "^9",
    "phpcompatibility/php-compatibility": "*",
    "phpunit/phpunit": "^9",
    "roave/security-advisories": "dev-master",
    "roots/wordpress": "~6.5",
    "slevomat/coding-standard": "~8.12",
    "squizlabs/php_codesniffer": "^3.2",
    "wp-phpunit/wp-phpunit": "~6.5",
    "yoast/phpunit-polyfills": "^2.0"
  },
  "suggest": {
    "frontpack/composer-assets-plugin": "Composer plugin for copying of frontend assets into public directory."
  },
  "autoload": {
    "psr-4": {
      "Dwnload\\WpSettingsApi\\": "src"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Dwnload\\Tests\\WpSettingsApi\\": "tests/unit"
    }
  },
  "scripts": {
    "install-codestandards": [
      "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
    ],
    "phpcs": [
      "bash ./vendor/thefrosty/wp-utilities/bin/phpcs.sh"
    ],
    "phpmd": [
      "bash ./vendor/thefrosty/wp-utilities/bin/phpmd.sh"
    ],
    "phpunit": [
      "./vendor/bin/phpunit --colors --verbose"
    ],
    "eslint": [
      "npm run eslint"
    ],
    "tests": [
      "@phpcs",
      "@phpunit",
      "@eslint"
    ]
  }
}
