composer.json 643 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{
	"name": "yiisoft/yii2-debug",
	"description": "The debugger extension for the Yii framework",
	"keywords": ["yii", "debug", "debugger"],
	"type": "yii2-extension",
	"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"
	},
	"minimum-stability": "dev",
	"require": {
Qiang Xue committed
16 17
		"yiisoft/yii2": "*",
		"yiisoft/yii2-bootstrap": "*"
18 19 20 21 22 23
	},
	"autoload": {
		"psr-0": { "yii\\debug\\": "" }
	},
	"target-dir": "yii/debug"
}