|
1 | 1 | { |
2 | 2 | "name": "cache/memcache-adapter", |
3 | | - "description": "A PSR-6 cache implementation using memcache. 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 memcache. This implementation supports tags", |
8 | 5 | "keywords": [ |
9 | 6 | "cache", |
10 | 7 | "psr-6", |
11 | 8 | "memcache", |
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", |
| 27 | + "cache/adapter-common": "^1.0", |
29 | 28 | "psr/cache": "^1.0", |
30 | | - "psr/simple-cache": "^1.0", |
31 | | - "cache/adapter-common": "^1.0" |
| 29 | + "psr/simple-cache": "^1.0" |
| 30 | + }, |
| 31 | + "provide": { |
| 32 | + "psr/cache-implementation": "^1.0", |
| 33 | + "psr/simple-cache-implementation": "^1.0" |
32 | 34 | }, |
33 | 35 | "require-dev": { |
34 | | - "phpunit/phpunit": "^5.7.21", |
35 | | - "cache/integration-tests": "^0.16" |
| 36 | + "cache/integration-tests": "^0.16", |
| 37 | + "phpunit/phpunit": "^5.7.21" |
36 | 38 | }, |
37 | 39 | "suggest": { |
38 | 40 | "ext-memcache": "The extension required to use this pool." |
39 | 41 | }, |
40 | | - "provide": { |
41 | | - "psr/cache-implementation": "^1.0", |
42 | | - "psr/simple-cache-implementation": "^1.0" |
| 42 | + "extra": { |
| 43 | + "branch-alias": { |
| 44 | + "dev-master": "1.1-dev" |
| 45 | + } |
43 | 46 | }, |
44 | 47 | "autoload": { |
45 | 48 | "psr-4": { |
|
54 | 57 | "/Tests/" |
55 | 58 | ] |
56 | 59 | }, |
57 | | - "extra": { |
58 | | - "branch-alias": { |
59 | | - "dev-master": "1.1-dev" |
60 | | - } |
61 | | - } |
| 60 | + "minimum-stability": "dev", |
| 61 | + "prefer-stable": true |
62 | 62 | } |
0 commit comments