forked from TruCopilot/phpfastcache
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.85 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.85 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
{
"name": "phpfastcache/phpfastcache",
"type" : "library",
"description": "PHP Abstract Cache Class - Reduce your database call using cache system. Phpfastcache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.",
"keywords": ["abstract", "cache","caching","php cache","mysql cache","apc","apcu","arangodb","dynamodb","memcache","memcached","wincache","files cache","pdo cache","cache class","redis","predis","cookie", "mongodb", "cassandra", "couchdb", "couchbase", "LevelDb", "Ssdb", "Wincache", "xcache","zend","zend disk cache","zend memory cache","zend data cache","zend server"],
"homepage": "https://www.phpfastcache.com",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Georges.L",
"email": "contact@geolim4.com",
"homepage": "https://github.com/Geolim4",
"role": "Actual Project Manager/Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/PHPSocialNetwork/phpfastcache/graphs/contributors"
}
],
"require": {
"php": ">=8.0",
"psr/cache": "^2.0||^3.0",
"psr/simple-cache": "^2.0||^3.0",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"league/climate": "^3.5",
"ext-gettext": "*",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "~3.0",
"phpstan/phpstan": "^0.12.98",
"jetbrains/phpstorm-stubs": "dev-master"
},
"suggest": {
"ext-apcu": "*",
"ext-intl": "*",
"ext-memcached": "*",
"ext-memcache": "*",
"ext-mongodb": "*",
"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.1.0",
"doctrine/couchdb": "^dev-master#9eeb9e5",
"triagens/arangodb": "^3.8",
"google/cloud-firestore": "^1.20",
"aws/aws-sdk-php": "~3.0"
},
"conflict": {
"doctrine/couchdb": "<dev-master#9eeb9e5"
},
"autoload": {
"psr-4": {
"Phpfastcache\\": "lib/Phpfastcache/",
"Phpfastcache\\Tests\\": "tests/lib/"
}
},
"support": {
"issues": "https://github.com/PHPSocialNetwork/phpfastcache/issues",
"wiki": "https://github.com/PHPSocialNetwork/phpfastcache/wiki",
"source": "https://github.com/PHPSocialNetwork/phpfastcache"
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/geolim4"
}
]
}