-
-
Notifications
You must be signed in to change notification settings - Fork 183
/
composer.json
50 lines (50 loc) · 1.32 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
50
{
"name": "yiisoft/yii2-redis",
"description": "Redis Cache, Session and ActiveRecord for the Yii framework",
"keywords": ["yii2", "redis", "active-record", "cache", "session"],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii2-redis/issues",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "ircs://irc.libera.chat:6697/yii",
"source": "https://github.com/yiisoft/yii2-redis"
},
"authors": [
{
"name": "Carsten Brandt",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "~2.0.39",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "<7",
"yiisoft/yii2-dev": "~2.0.39"
},
"autoload": {
"psr-4": { "yii\\redis\\": "src" }
},
"autoload-dev": {
"psr-4": { "yiiunit\\extensions\\redis\\": "tests/"}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}