|
1 | 1 | { |
2 | 2 | "name": "cache/filesystem-adapter", |
3 | | - "description": "A PSR-6 cache implementation using filesystem. 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 filesystem. This implementation supports tags", |
8 | 5 | "keywords": [ |
9 | 6 | "cache", |
10 | 7 | "psr-6", |
11 | 8 | "filesystem", |
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 | | - "league/flysystem": "^1.0" |
33 | | - }, |
34 | | - "require-dev": { |
35 | | - "phpunit/phpunit": "^5.7.21", |
36 | | - "cache/integration-tests": "^0.16" |
| 28 | + "league/flysystem": "^1.0", |
| 29 | + "psr/cache": "^1.0", |
| 30 | + "psr/simple-cache": "^1.0" |
37 | 31 | }, |
38 | 32 | "provide": { |
39 | 33 | "psr/cache-implementation": "^1.0", |
40 | 34 | "psr/simple-cache-implementation": "^1.0" |
41 | 35 | }, |
| 36 | + "require-dev": { |
| 37 | + "cache/integration-tests": "^0.16", |
| 38 | + "phpunit/phpunit": "^5.7.21" |
| 39 | + }, |
| 40 | + "extra": { |
| 41 | + "branch-alias": { |
| 42 | + "dev-master": "1.1-dev" |
| 43 | + } |
| 44 | + }, |
42 | 45 | "autoload": { |
43 | 46 | "psr-4": { |
44 | 47 | "Cache\\Adapter\\Filesystem\\": "" |
|
47 | 50 | "/Tests/" |
48 | 51 | ] |
49 | 52 | }, |
50 | | - "extra": { |
51 | | - "branch-alias": { |
52 | | - "dev-master": "1.1-dev" |
53 | | - } |
54 | | - } |
| 53 | + "minimum-stability": "dev", |
| 54 | + "prefer-stable": true |
55 | 55 | } |
0 commit comments