-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
60 lines (60 loc) · 1.63 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
{
"name": "nguyenanhung/my-cache",
"type": "library",
"description": "My Cache Library",
"keywords": [
"cache",
"phpfastcache",
"my cache"
],
"homepage": "https://github.com/nguyenanhung/my-cache",
"license": "GPL-3.0",
"authors": [
{
"name": "Nguyen An Hung",
"email": "[email protected]",
"homepage": "https://nguyenanhung.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/nguyenanhung/my-cache/issues",
"wiki": "https://github.com/nguyenanhung/my-cache/wiki",
"source": "https://github.com/nguyenanhung/my-cache"
},
"require": {
"php": "^8.0 || ^7.0",
"ext-json": "*",
"ext-iconv": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"nguyenanhung/my-debug": "^4.0 || ^3.0",
"phpfastcache/phpfastcache": "^9.0 || ^8.1"
},
"require-dev": {
"kint-php/kint": ">=3.0"
},
"autoload": {
"psr-4": {
"nguyenanhung\\MyCache\\": "src/"
}
},
"suggest": {
"ext-apcu": "*",
"ext-intl": "*",
"ext-memcached": "*",
"ext-memcache": "*",
"ext-redis": "*",
"ext-xcache": "*",
"ext-sqlite": "*",
"ext-wincache": "*",
"ext-leveldb": "*",
"ext-couchbase": "*",
"ext-couchbase_v3": "*",
"predis/predis": "^1.1",
"mongodb/mongodb": "^1.9",
"phpfastcache/phpssdb": "~1.0.0",
"phpfastcache/couchdb": "~1.0.0",
"phpfastcache/mongodb-extension": "~9.2.0"
}
}