-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.53 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.53 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
{
"name": "infocyph/cachelayer",
"description": "PSR-6/PSR-16 cache layer with local, distributed, and cloud adapters.",
"license": "MIT",
"type": "library",
"keywords": [
"cache",
"memoize",
"memoization",
"psr-6",
"psr-16",
"apcu",
"redis",
"memcached",
"sqlite",
"pdo",
"mysql",
"mariadb",
"postgres",
"mongodb",
"scylladb",
"valkey",
"weakmap",
"chain-cache"
],
"authors": [
{
"name": "Infocyph",
"email": "infocyph@gmail.com"
},
{
"name": "abmmhasan",
"email": "abmmhasan@gmail.com"
}
],
"require": {
"php": ">=8.3",
"opis/closure": "^4.5",
"psr/cache": "^3.0",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"infocyph/phpforge": "dev-main",
"mongodb/mongodb": "^1.20 || ^2.0"
},
"suggest": {
"ext-apcu": "For APCu-based caching (in-memory, per-process)",
"ext-cassandra": "For ScyllaDB/Cassandra usage via ScyllaDbCacheAdapter",
"ext-mbstring": "Recommended for development tools output formatting (Pest/Termwind)",
"ext-memcached": "For Memcached-based caching (distributed, RAM)",
"ext-mongodb": "For MongoDB usage via MongoDbCacheAdapter",
"ext-pdo": "For PDO-based SQL caching (MySQL/MariaDB/PostgreSQL/etc.)",
"ext-pdo_mysql": "For MySQL/MariaDB usage via Cache::pdo(...)",
"ext-pdo_pgsql": "For PostgreSQL usage via Cache::pdo(...)",
"ext-pdo_sqlite": "For default SQLite usage via Cache::pdo(...) or Cache::sqlite(...)",
"ext-redis": "For Redis-based caching (persistent, networked)",
"ext-sysvshm": "For shared-memory caching via SharedMemoryCacheAdapter",
"mongodb/mongodb": "For MongoDB caching via MongoDbCacheAdapter"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Infocyph\\CacheLayer\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Infocyph\\CacheLayer\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infocyph/phpforge": true,
"pestphp/pest-plugin": true
},
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true
}
}