composer.json 719 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5 6 7
{
	"name": "yiisoft/yii2-bootstrap",
	"description": "The Twitter Bootstrap extension for the Yii framework",
	"keywords": ["yii", "bootstrap"],
	"type": "yii2-extension",
	"license": "BSD-3-Clause",
	"support": {
8
		"issues": "https://github.com/yiisoft/yii2/issues?labels=ext%3Abootstrap",
Qiang Xue committed
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"
		}
	],
Qiang Xue committed
20
	"require": {
21
		"yiisoft/yii2": "*",
22
		"twbs/bootstrap": "3.0.*"
Qiang Xue committed
23 24 25 26 27 28
	},
	"autoload": {
		"psr-0": { "yii\\bootstrap\\": "" }
	},
	"target-dir": "yii/bootstrap"
}