-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.51 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
{
"name": "stfalcon-studio/doctrine-redis-cache-bundle",
"description": "Add custom namespace for doctrine cache pools.",
"keywords": ["bundle", "symfony", "doctrine", "cache", "cache pool", "redis"],
"homepage": "https://github.com/stfalcon-studio/DoctrineRedisCacheBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Artem Henvald",
"email": "genvaldartem@gmail.com",
"role": "Creator"
}
],
"support": {
"issues": "https://github.com/stfalcon-studio/DoctrineRedisCacheBundle/issues"
},
"require": {
"php": ">=8.2",
"ext-redis": "*",
"doctrine/doctrine-migrations-bundle": "^3.2",
"symfony/cache": "^7.0",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/http-kernel": "^7.0"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.12",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"StfalconStudio\\DoctrineRedisCacheBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"StfalconStudio\\DoctrineRedisCacheBundle\\Tests\\": "Tests/"
}
}
}