composer.json 644 Bytes
Newer Older
1 2 3 4
{
	"name": "yiisoft/yii2-jui",
	"description": "The Jquery UI extension for the Yii framework",
	"keywords": ["yii", "Jquery UI", "renderer"],
5
	"type": "yii2-extension",
6 7
	"license": "BSD-3-Clause",
	"support": {
8
		"issues": "https://github.com/yiisoft/yii2/issues?labels=ext%3Ajui",
9 10 11 12 13
		"forum": "http://www.yiiframework.com/forum/",
		"wiki": "http://www.yiiframework.com/wiki/",
		"irc": "irc://irc.freenode.net/yii",
		"source": "https://github.com/yiisoft/yii2"
	},
14 15 16 17 18 19
	"authors": [
		{
			"name": "Qiang Xue",
			"email": "qiang.xue@gmail.com"
		}
	],
20
	"require": {
Qiang Xue committed
21
		"yiisoft/yii2": "*"
22 23
	},
	"autoload": {
Qiang Xue committed
24 25
		"psr-4": { "yii\\jui\\": "" }
	}
26
}