composer.json 925 Bytes
Newer Older
1
{
2 3 4
	"name": "yiisoft/yii2-app-basic",
	"description": "Yii 2 Basic Application Template",
	"keywords": ["yii", "framework", "basic", "application template"],
5 6 7 8 9 10 11 12 13 14 15 16
	"homepage": "http://www.yiiframework.com/",
	"type": "project",
	"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": {
17
		"php": ">=5.4.0",
Qiang Xue committed
18
		"yiisoft/yii2": "dev-master",
Qiang Xue committed
19
		"yiisoft/yii2-bootstrap": "dev-master",
Qiang Xue committed
20 21
		"yiisoft/yii2-debug": "dev-master",
		"yiisoft/yii2-gii": "dev-master"
Qiang Xue committed
22 23
	},
	"scripts": {
24
		"post-create-project-cmd": [
Qiang Xue committed
25
			"yii\\composer\\Installer::setPermission"
Qiang Xue committed
26 27 28
		]
	},
	"extra": {
Qiang Xue committed
29
		"writable": [
Qiang Xue committed
30
			"runtime",
31
			"web/assets"
Qiang Xue committed
32
		],
Qiang Xue committed
33
		"executable": [
Qiang Xue committed
34 35
			"yii"
		]
36 37
	}
}