-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.14 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "stefangabos/zebra_cache",
"type": "library",
"description": "A lightweight and flexible PHP caching library with support for file, Redis, and Memcached storage backends.",
"keywords": ["php", "cache", "caching", "filesystem", "redis", "memcache", "memcached", "performance", "cache library", "key-value", "ttl", "psr-16", "lightweight"],
"homepage": "https://github.com/stefangabos/Zebra_Cache",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Stefan Gabos",
"email": "contact@stefangabos.ro",
"homepage": "https://github.com/stefangabos",
"role": "Developer"
}
],
"require": {
"php": ">=7"
},
"autoload": {
"psr-4": {
"stefangabos\\Zebra_Cache\\": "./"
}
},
"require-dev": {
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3"
},
"support": {
"issues": "https://github.com/stefangabos/Zebra_Cache/issues",
"source": "https://github.com/stefangabos/Zebra_Cache"
},
"config": {
"sort-packages": true
}
}