{
  "name": "slim/http-cache",
  "type": "library",
  "description": "Slim Framework HTTP cache middleware and service provider",
  "keywords": [
    "slim",
    "framework",
    "middleware",
    "cache"
  ],
  "homepage": "https://www.slimframework.com",
  "license": "MIT",
  "authors": [
    {
      "name": "Josh Lockhart",
      "email": "hello@joshlockhart.com",
      "homepage": "http://joshlockhart.com"
    }
  ],
  "require": {
    "php": "^7.2 || ^8.0",
    "psr/http-message": "^1.1 || ^2.0",
    "psr/http-server-middleware": "^1.0"
  },
  "require-dev": {
    "phpunit/phpunit": "^8.5.13 || ^9.3.8",
    "slim/psr7": "^1.1",
    "squizlabs/php_codesniffer": "^3.5",
    "phpstan/phpstan": "^1.3"
  },
  "autoload": {
    "psr-4": {
      "Slim\\HttpCache\\": "src"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Slim\\HttpCache\\Tests\\": "tests"
    }
  },
  "scripts": {
    "test": [
      "@phpcs",
      "@phpstan",
      "@phpunit"
    ],
    "phpcs": "phpcs",
    "phpstan": "phpstan analyse src --memory-limit=-1",
    "phpunit": "phpunit"
  }
}
