{
  "name": "phanan/poddle",
  "description": "Parse podcast feeds with PHP following PSP-1 Podcast RSS Standard",
  "authors": [
    {
      "name": "Phan An",
      "email": "me@phanan.net"
    }
  ],
  "keywords": [
    "podcast",
    "xml",
    "rss",
    "feed",
    "parser",
    "psp-1"
  ],
  "license": "MIT",
  "type": "library",
  "require": {
    "php": ">=8.1",
    "saloonphp/xml-wrangler": "^1.2",
    "illuminate/collections": "^10.48|^11.23|^12.0",
    "illuminate/http": "^10.48|^11.23|^12.0",
    "illuminate/support": "^10.48|^11.23|^12.0",
    "guzzlehttp/guzzle": "^7.8",
    "psr/http-client": "^1.0"
  },
  "require-dev": {
    "phpunit/phpunit": ">=10.5",
    "laravel/pint": "^1.15",
    "larastan/larastan": "^2.9",
    "orchestra/testbench": "*",
    "laravel/tinker": "^2.9",
    "mockery/mockery": "^1.6"
  },
  "scripts": {
    "test": "phpunit tests",
    "cs": "pint --test",
    "cs:fix": "pint",
    "analyze": "phpstan analyse --memory-limit=1G"
  },
  "post-install-cmd": [
    "composer dump-autoload"
  ],
  "autoload": {
    "psr-4": {
      "PhanAn\\Poddle\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Tests\\": "tests/"
    }
  },
  "config": {
    "preferred-install": "dist",
    "optimize-autoloader": true
  },
  "minimum-stability": "stable"
}
