{
  "name": "thefrosty/wp-utilities",
  "description": "A library containing my standard development resources",
  "license": "MIT",
  "authors": [
    {
      "name": "Austin Passy",
      "email": "thefrosty@users.noreply.github.com",
      "homepage": "https://austin.passy.co",
      "role": "Developer"
    }
  ],
  "config": {
    "allow-plugins": {
      "roots/wordpress-core-installer": true,
      "dealerdirect/phpcodesniffer-composer-installer": true
    },
    "optimize-autoloader": true,
    "platform": {
      "php": "8.1"
    },
    "sort-packages": true
  },
  "minimum-stability": "dev",
  "prefer-stable": true,
  "require": {
    "php": ">=8.1",
    "ext-json": "*",
    "ext-openssl": "*",
    "jjgrainger/posttypes": "^2.2",
    "johnbillion/args": "^2.1",
    "psr/container": "^2.0",
    "symfony/http-foundation": "^6.4.14 || ^7.1.7"
  },
  "require-dev": {
    "ext-simplexml": "*",
    "dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
    "php-stubs/wordpress-stubs": "^6.4",
    "phpcompatibility/php-compatibility": "^9.3",
    "phpmd/phpmd": "^2.13",
    "phpunit/php-code-coverage": "^10",
    "phpunit/phpunit": "^10",
    "pimple/pimple": "^3.5",
    "roots/wordpress": "^6.4",
    "slevomat/coding-standard": "^8.8",
    "squizlabs/php_codesniffer": "^3.9",
    "szepeviktor/phpstan-wordpress": "^2.0",
    "wp-coding-standards/wpcs": "dev-develop",
    "wp-phpunit/wp-phpunit": "^6.4",
    "yoast/phpunit-polyfills": "^2.0"
  },
  "suggest": {
    "jjgrainger/posttypes": "Simple WordPress custom post types."
  },
  "autoload": {
    "files": [
      "src/functions.php"
    ],
    "psr-4": {
      "TheFrosty\\WpUtilities\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "TheFrosty\\WpUtilities\\Tests\\": "tests/unit/"
    }
  },
  "scripts": {
    "install-codestandards": [
      "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
    ],
    "phpcs": [
      "bash ./bin/phpcs.sh"
    ],
    "phpmd": [
      "bash ./bin/phpmd.sh"
    ],
    "phpstan": [
      "bash ./bin/phpstan.sh"
    ],
    "phpunit": [
      "./vendor/bin/phpunit --colors --coverage-html ./tests/results && php ./tests/clover-results.php ./tests/clover.xml 2"
    ],
    "psalm": [
      "bash ./bin/psalm.sh"
    ],
    "tests": [
      "@phpcs",
      "@phpunit"
    ]
  }
}
