Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{
2
  "name": "kevinrob/guzzle-cache-middleware",
3
  "type": "library",
4
  "description": "A HTTP/1.1 Cache for Guzzle 6. It's a simple Middleware to be added in the HandlerStack. (RFC 7234)",
5
  "keywords": ["guzzle", "guzzle6", "cache", "http", "http 1.1", "psr6", "psr7", "handler", "middleware", "cache-control", "rfc7234", "performance", "php", "promise", "expiration", "validation", "Etag", "flysystem", "doctrine"],
6
  "homepage": "https://github.com/Kevinrob/guzzle-cache-middleware",
7
  "license": "MIT",
8
  "authors": [
9
    {
10
      "name": "Kevin Robatel",
11
      "email": "kevinrob2@gmail.com",
12
      "homepage": "https://github.com/Kevinrob"
13
    }
14
  ],
15
  "require": {
1441 ariadna 16
    "php": ">=8.1",
17
    "guzzlehttp/guzzle": "^7.9.2",
18
    "guzzlehttp/promises": "^2.0.3",
19
    "guzzlehttp/psr7": "^2.7.0"
1 efrain 20
  },
21
  "require-dev": {
1441 ariadna 22
    "phpunit/phpunit": "^9.6.21",
1 efrain 23
    "doctrine/cache": "^1.10",
1441 ariadna 24
    "league/flysystem": "^2.5",
1 efrain 25
    "psr/cache": "^1.0",
26
    "cache/array-adapter": "^0.4 || ^0.5 || ^1.0",
27
    "illuminate/cache": "^5.0",
28
    "cache/simple-cache-bridge": "^0.1 || ^1.0",
1441 ariadna 29
    "symfony/phpunit-bridge": "^7.1.4",
1 efrain 30
    "symfony/cache": "^4.4 || ^5.0"
31
  },
32
  "autoload": {
33
    "psr-4": {
34
      "Kevinrob\\GuzzleCache\\": "src/"
35
    }
36
  },
37
  "autoload-dev": {
38
    "psr-4": {
39
      "Kevinrob\\GuzzleCache\\Tests\\": "tests/"
40
    }
41
  },
42
  "suggest": {
43
    "guzzlehttp/guzzle": "For using this library. It was created for Guzzle6 (but you can use it with any PSR-7 HTTP client).",
44
    "doctrine/cache": "This library has a lot of ready-to-use cache storage (to be used with Kevinrob\\GuzzleCache\\Storage\\DoctrineCacheStorage). Use only versions >=1.4.0 < 2.0.0",
45
    "league/flysystem": "To be used with Kevinrob\\GuzzleCache\\Storage\\FlysystemStorage",
46
    "psr/cache": "To be used with Kevinrob\\GuzzleCache\\Storage\\Psr6CacheStorage",
47
    "psr/simple-cache": "To be used with Kevinrob\\GuzzleCache\\Storage\\Psr16CacheStorage",
48
    "laravel/framework": "To be used with Kevinrob\\GuzzleCache\\Storage\\LaravelCacheStorage"
49
  },
50
  "scripts": {
51
    "test": "vendor/bin/phpunit"
52
  },
53
  "config": {
54
    "allow-plugins": {
55
      "kylekatarnls/update-helper": true
56
    }
57
  }
58
}