composer package updates
[openemr.git] / vendor / zendframework / zend-cache / composer.json
blob7d8f29faf8b5aab369ad6a4be195318bbef2e0cb
2     "name": "zendframework/zend-cache",
3     "description": "Caching implementation with a variety of storage options, as well as codified caching strategies for callbacks, classes, and output",
4     "license": "BSD-3-Clause",
5     "keywords": [
6         "zendframework",
7         "zf",
8         "cache",
9         "psr-6",
10         "psr-16"
11     ],
12     "support": {
13         "docs": "https://docs.zendframework.com/zend-cache/",
14         "issues": "https://github.com/zendframework/zend-cache/issues",
15         "source": "https://github.com/zendframework/zend-cache",
16         "rss": "https://github.com/zendframework/zend-cache/releases.atom",
17         "chat": "https://zendframework-slack.herokuapp.com",
18         "forum": "https://discourse.zendframework.com/c/questions/components"
19     },
20     "require": {
21         "php": "^5.6 || ^7.0",
22         "psr/cache": "^1.0",
23         "psr/simple-cache": "^1.0",
24         "zendframework/zend-eventmanager": "^2.6.3 || ^3.2",
25         "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
26         "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
27     },
28     "require-dev": {
29         "cache/integration-tests": "^0.16",
30         "phpbench/phpbench": "^0.13",
31         "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
32         "zendframework/zend-coding-standard": "~1.0.0",
33         "zendframework/zend-serializer": "^2.6",
34         "zendframework/zend-session": "^2.7.4"
35     },
36     "suggest": {
37         "zendframework/zend-serializer": "Zend\\Serializer component",
38         "zendframework/zend-session": "Zend\\Session component",
39         "ext-apc": "APC or compatible extension, to use the APC storage adapter",
40         "ext-apcu": "APCU >= 5.1.0, to use the APCu storage adapter",
41         "ext-dba": "DBA, to use the DBA storage adapter",
42         "ext-memcache": "Memcache >= 2.0.0 to use the Memcache storage adapter",
43         "ext-memcached": "Memcached >= 1.0.0 to use the Memcached storage adapter",
44         "ext-mongo": "Mongo, to use MongoDb storage adapter",
45         "ext-mongodb": "MongoDB, to use the ExtMongoDb storage adapter",
46         "ext-redis": "Redis, to use Redis storage adapter",
47         "ext-wincache": "WinCache, to use the WinCache storage adapter",
48         "ext-xcache": "XCache, to use the XCache storage adapter",
49         "mongodb/mongodb": "Required for use with the ext-mongodb adapter",
50         "mongofill/mongofill": "Alternative to ext-mongo - a pure PHP implementation designed as a drop in replacement"
51     },
52     "autoload": {
53         "files": [
54             "autoload/patternPluginManagerPolyfill.php"
55         ],
56         "psr-4": {
57             "Zend\\Cache\\": "src/"
58         }
59     },
60     "autoload-dev": {
61         "psr-4": {
62             "ZendTest\\Cache\\": "test/",
63             "ZendBench\\Cache\\": "benchmark/"
64         },
65         "files": [
66             "test/autoload.php"
67         ]
68     },
69     "config": {
70         "process-timeout": 600,
71         "sort-packages": true
72     },
73     "provide": {
74         "psr/cache-implementation": "1.0",
75         "psr/simple-cache-implementation": "1.0"
76     },
77     "extra": {
78         "branch-alias": {
79             "dev-master": "2.8.x-dev",
80             "dev-develop": "2.9.x-dev"
81         },
82         "zf": {
83             "component": "Zend\\Cache",
84             "config-provider": "Zend\\Cache\\ConfigProvider"
85         }
86     },
87     "scripts": {
88         "check": [
89             "@cs-check",
90             "@test"
91         ],
92         "cs-check": "phpcs",
93         "cs-fix": "phpcbf",
94         "test": "phpunit --colors=always",
95         "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
96     }