|
1 | 1 | {
|
2 | 2 | "name": "cache/redis-adapter",
|
3 |
| - "type": "library", |
4 | 3 | "description": "A PSR-6 cache implementation using Redis (PhpRedis). This implementation supports tags",
|
| 4 | + "license": "MIT", |
| 5 | + "type": "library", |
5 | 6 | "keywords": [
|
6 | 7 | "cache",
|
7 | 8 | "psr-6",
|
8 | 9 | "phpredis",
|
9 | 10 | "redis",
|
10 | 11 | "tag"
|
11 | 12 | ],
|
12 |
| - "homepage": "http://www.php-cache.com/en/latest/", |
13 |
| - "license": "MIT", |
14 | 13 | "authors": [
|
15 | 14 | {
|
16 | 15 | "name": "Aaron Scherer",
|
|
23 | 22 | "homepage": "https://github.com/nyholm"
|
24 | 23 | }
|
25 | 24 | ],
|
| 25 | + "homepage": "http://www.php-cache.com/en/latest/", |
26 | 26 | "require": {
|
27 | 27 | "php": "^5.6 || ^7.0 || ^8.0",
|
28 | 28 | "cache/adapter-common": "^1.0",
|
29 | 29 | "cache/hierarchical-cache": "^1.0",
|
30 | 30 | "psr/cache": "^1.0",
|
31 | 31 | "psr/simple-cache": "^1.0"
|
32 | 32 | },
|
33 |
| - "provide": { |
34 |
| - "psr/cache-implementation": "^1.0", |
35 |
| - "psr/simple-cache-implementation": "^1.0" |
36 |
| - }, |
37 | 33 | "require-dev": {
|
38 | 34 | "cache/integration-tests": "^0.16",
|
39 | 35 | "phpunit/phpunit": "^5.7.21"
|
40 | 36 | },
|
| 37 | + "provide": { |
| 38 | + "psr/cache-implementation": "^1.0", |
| 39 | + "psr/simple-cache-implementation": "^1.0" |
| 40 | + }, |
41 | 41 | "suggest": {
|
42 | 42 | "ext-redis": "The extension required to use this pool."
|
43 | 43 | },
|
44 |
| - "extra": { |
45 |
| - "branch-alias": { |
46 |
| - "dev-master": "1.1-dev" |
47 |
| - } |
48 |
| - }, |
| 44 | + "minimum-stability": "dev", |
| 45 | + "prefer-stable": true, |
49 | 46 | "autoload": {
|
50 | 47 | "psr-4": {
|
51 | 48 | "Cache\\Adapter\\Redis\\": ""
|
|
54 | 51 | "/Tests/"
|
55 | 52 | ]
|
56 | 53 | },
|
57 |
| - "minimum-stability": "dev", |
58 |
| - "prefer-stable": true |
| 54 | + "extra": { |
| 55 | + "branch-alias": { |
| 56 | + "dev-master": "1.1-dev" |
| 57 | + } |
| 58 | + } |
59 | 59 | }
|
0 commit comments