forked from php-bundles/redis-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.07 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
{
"name": "symfony-bundles/redis-bundle",
"type": "symfony-bundle",
"description": "Symfony Redis Bundle",
"keywords": ["redis", "nosql", "symfony", "bundle"],
"homepage": "https://github.com/symfony-bundles/redis-bundle",
"license": "MIT",
"authors": [
{
"name": "Dmitry Khaperets",
"email": "khaperets@gmail.com"
}
],
"autoload": {
"psr-4": {
"SymfonyBundles\\RedisBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"require": {
"php": "^7.2||^8.0",
"predis/predis": "~1.1||~2.2",
"symfony/framework-bundle": "^4.3||^5.0||^6.0||^7.0",
"symfony/yaml": "^4.3||^5.0||^6.0||^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5||^9.0",
"symfony/phpunit-bridge": "^5.0",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.4"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}