composer.json 684 Bytes
Newer Older
1 2
{
	"name": "yiisoft/yii2-redis",
Carsten Brandt committed
3
	"description": "Redis Cache, Session and ActiveRecord for the Yii framework",
4
	"keywords": ["yii2", "redis", "active-record", "cache", "session"],
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
	"type": "yii2-extension",
	"license": "BSD-3-Clause",
	"support": {
		"issues": "https://github.com/yiisoft/yii2/issues?labels=ext%3Aredis",
		"forum": "http://www.yiiframework.com/forum/",
		"wiki": "http://www.yiiframework.com/wiki/",
		"irc": "irc://irc.freenode.net/yii",
		"source": "https://github.com/yiisoft/yii2"
	},
	"authors": [
		{
			"name": "Carsten Brandt",
			"email": "mail@cebe.cc"
		}
	],
	"require": {
		"yiisoft/yii2": "*"
	},
	"autoload": {
Qiang Xue committed
24 25
		"psr-4": { "yii\\redis\\": "" }
	}
26
}