forked from snc/SncRedisBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
89 lines (89 loc) · 2.77 KB
/
composer.json
File metadata and controls
89 lines (89 loc) · 2.77 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
86
87
88
89
{
"name": "snc/redis-bundle",
"description": "A Redis bundle for Symfony",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"redis",
"nosql",
"symfony"
],
"authors": [
{
"name": "Henrik Westphal",
"email": "henrik.westphal@gmail.com"
},
{
"name": "Community contributors",
"homepage": "https://github.com/snc/SncRedisBundle/contributors"
}
],
"homepage": "https://github.com/snc/SncRedisBundle",
"require": {
"php": "^8.2",
"symfony/deprecation-contracts": "^2 || ^3",
"symfony/framework-bundle": "^6.4 || ^7.3 || ^8.0",
"symfony/http-foundation": "^6.4 || ^7.3 || ^8.0",
"symfony/service-contracts": "^2.0 || ^3.0",
"symfony/var-dumper": "^6.4 || ^7.3 || ^8.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-redis": "*",
"doctrine/annotations": "^2.0",
"doctrine/coding-standard": "^12.0",
"friendsofphp/proxy-manager-lts": "^1.0.6",
"monolog/monolog": "*",
"phpunit/phpunit": "^9.6.34 || ^10.5.63",
"predis/predis": "^3.1",
"psalm/plugin-phpunit": "^0.19.3",
"psr/http-message": "^2",
"seec/phpunit-consecutive-params": "^1.1.4",
"symfony/browser-kit": "^6.4 || ^7.3 || ^8.0",
"symfony/cache": "^6.4 || ^7.3 || ^8.0",
"symfony/config": "^6.4 || ^7.3 || ^8.0",
"symfony/console": "^6.4 || ^7.3 || ^8.0",
"symfony/dom-crawler": "^6.4 || ^7.3 || ^8.0",
"symfony/filesystem": "^6.4 || ^7.3 || ^8.0",
"symfony/stopwatch": "^6.4 || ^7.3 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.3 || ^8.0",
"symfony/web-profiler-bundle": "^6.4 || ^7.3 || ^8.0",
"symfony/yaml": "^6.4 || ^7.3 || ^8.0",
"vimeo/psalm": "^5 || ^6 || ^7"
},
"conflict": {
"ext-redis": "<5.3.2",
"predis/predis": "<3.1"
},
"suggest": {
"monolog/monolog": "If you want to use the monolog redis handler.",
"predis/predis": "If you want to use predis.",
"symfony/console": "If you want to use commands to interact with the redis database"
},
"minimum-stability": "beta",
"autoload": {
"psr-4": {
"Snc\\RedisBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Snc\\RedisBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/flex": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"test": "@php ./vendor/bin/phpunit"
}
}