composer.json 1.06 KB
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",
18 19
		"yiisoft/yii2": "*",
		"yiisoft/yii2-bootstrap": "*",
20 21 22
		"yiisoft/yii2-swiftmailer": "*"
	},
	"require-dev": {
23
		"yiisoft/yii2-codeception": "*",
24
		"yiisoft/yii2-debug": "*",
25 26 27
		"yiisoft/yii2-gii": "*",
		"codeception/codeception": "*",
		"codeception/specify": "*"
Qiang Xue committed
28 29
	},
	"scripts": {
30
		"post-create-project-cmd": [
Qiang Xue committed
31
			"yii\\composer\\Installer::setPermission"
Qiang Xue committed
32 33
		]
	},
34 35 36
	"config": {
		"process-timeout": 1800
	},
Qiang Xue committed
37
	"extra": {
Qiang Xue committed
38
		"writable": [
Qiang Xue committed
39
			"runtime",
40
			"web/assets"
Qiang Xue committed
41
		],
Qiang Xue committed
42
		"executable": [
Qiang Xue committed
43 44
			"yii"
		]
45 46
	}
}