{
  "name": "alleyinteractive/wordpress-autoloader",
  "type": "library",
  "description": "Autoload files using WordPress File Conventions",
  "license": "GPL-2.0-or-later",
  "authors": [
    {
      "name": "Alley Interactive",
      "email": "info@alley.co"
    }
  ],
  "require": {
    "php": "^8.1"
  },
  "require-dev": {
    "phpunit/phpunit": "^10.5.45",
    "squizlabs/php_codesniffer": "^4.0"
  },
  "config": {
    "sort-packages": true,
    "allow-plugins": {
      "dealerdirect/phpcodesniffer-composer-installer": true
    }
  },
  "autoload": {
    "files": [
      "src/class-autoloader.php"
    ]
  },
  "minimum-stability": "dev",
  "prefer-stable": true,
  "scripts": {
    "lint": "@phpcs",
    "lint:fix": "@phpcbf",
    "phpcbf": "phpcbf --standard=./phpcs.xml .",
    "phpcs": "phpcs --standard=./phpcs.xml -vsn .",
    "phpunit": "vendor/bin/phpunit",
    "test": [
      "@phpcs",
      "@phpunit"
    ]
  }
}
