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