composer.json 723 Bytes
Newer Older
Qiang Xue committed
1 2
{
	"name": "yiisoft/yii2-composer",
Qiang Xue committed
3 4 5
	"description": "The composer plugin for Yii extension installer",
	"keywords": ["yii", "composer", "extension installer"],
	"type": "composer-plugin",
Qiang Xue committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
	"license": "BSD-3-Clause",
	"support": {
		"issues": "https://github.com/yiisoft/yii2/issues?state=open",
		"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": "Qiang Xue",
			"email": "qiang.xue@gmail.com"
		}
	],
	"autoload": {
Qiang Xue committed
21
		"psr-4": { "yii\\composer\\": "" }
Qiang Xue committed
22 23
	},
	"extra": {
24
		"class": "yii\\composer\\Plugin"
Qiang Xue committed
25 26 27
	},
	"require": {
		"composer-plugin-api": "1.0.0"
Qiang Xue committed
28 29
	}
}