-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
79 lines (79 loc) · 1.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "koded/cache-simple",
"type": "library",
"license": "BSD-3-Clause",
"description": "A PSR-16 caching library with support for several caching technologies. Supports JSON data caching in Redis.",
"keywords": [
"caching",
"cache",
"memcached",
"redis",
"json",
"shmop",
"file-cache",
"psr-16"
],
"authors": [
{
"name": "Mihail Binev",
"homepage": "https://kodeart.com"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/kodeart/cache-integration-tests"
}
],
"require": {
"php": "^8.1",
"koded/stdlib": "^6.3",
"psr/simple-cache": "^3.0",
"psr/log": "^3",
"ext-json": "*"
},
"suggest": {
"ext-redis": "For caching in Redis",
"ext-memcached": "For caching in Memcached",
"predis/predis": "For using Redis without ext-redis extension",
"ext-igbinary": "For Redis igbinary support",
"ext-msgpack": "For de/serializing cached data",
"ext-shmop": "For shared-memory caching"
},
"autoload": {
"classmap": [
"",
"Client/",
"Configuration/"
],
"files": [
"functions.php"
],
"exclude-from-classmap": [
"tests/"
]
},
"require-dev": {
"phpunit/phpunit": "^9",
"mikey179/vfsstream": "^1",
"predis/predis": "^2",
"cache/integration-tests": "dev-master",
"symfony/phpunit-bridge": "^6.0.x-dev",
"phpbench/phpbench": "^1"
},
"autoload-dev": {
"psr-4": {
"Tests\\Koded\\Caching\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"config": {
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}