-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 870 Bytes
/
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
{
"name": "clownfish/cache-mgr-bundle",
"type": "symfony-bundle",
"description": "Small helper to handle http- and redis cache in a symfony app.",
"keywords": ["symfony", "cache"],
"homepage": "https://github.com/artur2000/cache-mgr-bundle",
"license": "MIT",
"authors": [
{
"name": "Artur Cichosz",
"email": "ac@clownfishweb.pl",
"homepage": "http://www.clownfishweb.pl"
}
],
"require": {
"php": ">=8.1.0",
"predis/predis": "^2.2",
"snc/redis-bundle": "^4.7",
"symfony/framework-bundle": "^6.0"
},
"require-dev": {
},
"suggest": {
},
"autoload": {
"psr-4": {
"Clownfish\\CacheMgrBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}