-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.25 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "koded/cache-extended",
"type": "library",
"license": "BSD-3-Clause",
"description": "A PSR-6 caching library with support for several caching technologies.",
"keywords": [
"caching",
"cache",
"memcached",
"redis",
"json",
"file-cache",
"psr-6"
],
"authors": [
{
"name": "Mihail Binev",
"homepage": "https://kodeart.com"
}
],
"require": {
"php": "^8",
"psr/cache": "^1",
"koded/cache-simple": "3.*"
},
"autoload": {
"classmap": [""],
"exclude-from-classmap": [
"/Tests/"
]
},
"suggest": {
"ext-redis": "For caching in Redis",
"ext-memcached": "For caching in Memcached",
"predis/predis": "For using Redis without ext-redis extension",
"ext-msgpack": "For de/serializing the cache data with msgpack",
"ext-igbinary": "For Redis igbinary support"
},
"require-dev": {
"phpunit/phpunit": "^8",
"mikey179/vfsstream": "^1",
"predis/predis": "^1",
"cache/integration-tests": "dev-master",
"symfony/phpunit-bridge": "^4.4@dev"
},
"autoload-dev": {
"psr-4": {
"Tests\\Koded\\Caching\\": "Tests"
}
},
"config": {
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}