|
1 | 1 | { |
2 | 2 | "name": "cache/chain-adapter", |
3 | | - "description": "A PSR-6 cache implementation using chain. 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 chain. This implementation supports tags", |
8 | 5 | "keywords": [ |
9 | 6 | "cache", |
10 | 7 | "psr-6", |
11 | 8 | "chain", |
12 | 9 | "tag" |
13 | 10 | ], |
14 | 11 | "homepage": "http://www.php-cache.com/en/latest/", |
| 12 | + "license": "MIT", |
15 | 13 | "authors": [ |
16 | 14 | { |
17 | 15 | "name": "Aaron Scherer", |
|
26 | 24 | ], |
27 | 25 | "require": { |
28 | 26 | "php": "^5.6 || ^7.0 || ^8.0", |
29 | | - "psr/cache": "^1.0", |
30 | | - "psr/log": "^1.0", |
31 | 27 | "cache/adapter-common": "^1.0", |
32 | | - "cache/tag-interop": "^1.0" |
| 28 | + "cache/tag-interop": "^1.0", |
| 29 | + "psr/cache": "^1.0", |
| 30 | + "psr/log": "^1.0" |
| 31 | + }, |
| 32 | + "provide": { |
| 33 | + "psr/cache-implementation": "^1.0" |
33 | 34 | }, |
34 | 35 | "require-dev": { |
35 | | - "phpunit/phpunit": "^5.7.21", |
36 | | - "cache/filesystem-adapter": "^1.0", |
37 | 36 | "cache/array-adapter": "^1.0", |
38 | | - "cache/integration-tests": "^0.16" |
| 37 | + "cache/filesystem-adapter": "^1.0", |
| 38 | + "cache/integration-tests": "^0.16", |
| 39 | + "phpunit/phpunit": "^5.7.21" |
39 | 40 | }, |
40 | | - "provide": { |
41 | | - "psr/cache-implementation": "^1.0" |
| 41 | + "extra": { |
| 42 | + "branch-alias": { |
| 43 | + "dev-master": "1.1-dev" |
| 44 | + } |
42 | 45 | }, |
43 | 46 | "autoload": { |
44 | 47 | "psr-4": { |
|
48 | 51 | "/Tests/" |
49 | 52 | ] |
50 | 53 | }, |
51 | | - "extra": { |
52 | | - "branch-alias": { |
53 | | - "dev-master": "1.1-dev" |
54 | | - } |
55 | | - } |
| 54 | + "minimum-stability": "dev", |
| 55 | + "prefer-stable": true |
56 | 56 | } |
0 commit comments