composer.json 969 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",
19
		"yiisoft/yii2-swiftmailer": "dev-master",
Qiang Xue committed
20
		"yiisoft/yii2-bootstrap": "dev-master",
Qiang Xue committed
21 22
		"yiisoft/yii2-debug": "dev-master",
		"yiisoft/yii2-gii": "dev-master"
Qiang Xue committed
23 24
	},
	"scripts": {
25
		"post-create-project-cmd": [
Qiang Xue committed
26
			"yii\\composer\\Installer::setPermission"
Qiang Xue committed
27 28 29
		]
	},
	"extra": {
Qiang Xue committed
30
		"writable": [
Qiang Xue committed
31
			"runtime",
32
			"web/assets"
Qiang Xue committed
33
		],
Qiang Xue committed
34
		"executable": [
Qiang Xue committed
35 36
			"yii"
		]
37 38
	}
}