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