-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathcomposer.json
More file actions
110 lines (110 loc) · 3.54 KB
/
composer.json
File metadata and controls
110 lines (110 loc) · 3.54 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "cache/cache",
"description": "Library of all the php-cache adapters",
"license": "MIT",
"type": "library",
"keywords": [
"cache",
"psr6"
],
"authors": [
{
"name": "Aaron Scherer",
"email": "aequasi@gmail.com",
"homepage": "https://github.com/aequasi"
},
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com",
"homepage": "https://github.com/nyholm"
}
],
"homepage": "http://www.php-cache.com/en/latest/",
"require": {
"php": ">=7.4",
"doctrine/cache": "^1.3",
"league/flysystem": "^2.0 || ^3.0",
"psr/cache": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"cache/integration-tests": "^0.17",
"defuse/php-encryption": "^2.0",
"illuminate/cache": "^5.4 || ^5.5 || ^5.6",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.5.20 || ^9.5.10",
"predis/predis": "^1.1",
"symfony/cache": "^3.1",
"symfony/polyfill-php70": "^1.6"
},
"replace": {
"cache/adapter-common": "^1",
"cache/apc-adapter": "^1",
"cache/apcu-adapter": "^1",
"cache/array-adapter": "^1",
"cache/chain-adapter": "^1",
"cache/doctrine-adapter": "^1",
"cache/filesystem-adapter": "^1",
"cache/hierarchical-cache": "^1",
"cache/illuminate-adapter": "^1",
"cache/memcache-adapter": "^1",
"cache/memcached-adapter": "^1",
"cache/mongodb-adapter": "^1",
"cache/predis-adapter": "^1",
"cache/psr-6-doctrine-bridge": "^1",
"cache/redis-adapter": "^1",
"cache/session-handler": "^1",
"cache/taggable-cache": "^1",
"cache/util": "^1",
"cache/void-adapter": "^1"
},
"conflict": {
"cache/adapter-common": "<1",
"cache/apc-adapter": "<1",
"cache/apcu-adapter": "<1",
"cache/array-adapter": "<1",
"cache/chain-adapter": "<1",
"cache/doctrine-adapter": "<1",
"cache/filesystem-adapter": "<1",
"cache/hierarchical-cache": "<1",
"cache/illuminate-adapter": "<1",
"cache/memcache-adapter": "<1",
"cache/memcached-adapter": "<1",
"cache/mongodb-adapter": "<1",
"cache/predis-adapter": "<1",
"cache/psr-6-doctrine-bridge": "<1",
"cache/redis-adapter": "<1",
"cache/session-handler": "<1",
"cache/taggable-cache": "<1",
"cache/util": "<1",
"cache/void-adapter": "<1"
},
"suggest": {
"ext-apc": "APC extension is required to use the APC Adapter",
"ext-apcu": "APCu extension is required to use the APCu Adapter",
"ext-memcache": "Memcache extension is required to use the Memcache Adapter",
"ext-memcached": "Memcached extension is required to use the Memcached Adapter",
"ext-mongodb": "Mongodb extension required to use the Mongodb adapter",
"ext-redis": "Redis extension is required to use the Redis adapter",
"mongodb/mongodb": "Mongodb lib required to use the Mongodb adapter"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cache\\": "src/"
},
"files": [
"src/inc.php"
],
"exclude-from-classmap": [
"**/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}