Proyectos de Subversion Moodle

Rev

| 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": {
16
    "php": ">=7.2.0",
17
    "guzzlehttp/guzzle": "^6.0 || ^7.0",
18
    "guzzlehttp/psr7": "^1.7.0 || ^2.0.0"
19
  },
20
  "require-dev": {
21
    "phpunit/phpunit": "^8.5.15 || ^9.5",
22
    "doctrine/cache": "^1.10",
23
    "league/flysystem": "^1.0",
24
    "psr/cache": "^1.0",
25
    "cache/array-adapter": "^0.4 || ^0.5 || ^1.0",
26
    "illuminate/cache": "^5.0",
27
    "cache/simple-cache-bridge": "^0.1 || ^1.0",
28
    "symfony/phpunit-bridge": "^4.4 || ^5.0",
29
    "symfony/cache": "^4.4 || ^5.0"
30
  },
31
  "autoload": {
32
    "psr-4": {
33
      "Kevinrob\\GuzzleCache\\": "src/"
34
    }
35
  },
36
  "autoload-dev": {
37
    "psr-4": {
38
      "Kevinrob\\GuzzleCache\\Tests\\": "tests/"
39
    }
40
  },
41
  "suggest": {
42
    "guzzlehttp/guzzle": "For using this library. It was created for Guzzle6 (but you can use it with any PSR-7 HTTP client).",
43
    "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",
44
    "league/flysystem": "To be used with Kevinrob\\GuzzleCache\\Storage\\FlysystemStorage",
45
    "psr/cache": "To be used with Kevinrob\\GuzzleCache\\Storage\\Psr6CacheStorage",
46
    "psr/simple-cache": "To be used with Kevinrob\\GuzzleCache\\Storage\\Psr16CacheStorage",
47
    "laravel/framework": "To be used with Kevinrob\\GuzzleCache\\Storage\\LaravelCacheStorage"
48
  },
49
  "scripts": {
50
    "test": "vendor/bin/phpunit"
51
  },
52
  "config": {
53
    "allow-plugins": {
54
      "kylekatarnls/update-helper": true
55
    }
56
  }
57
}