composer.json 1.25 KB
Newer Older
1
{
2 3
	"name": "yiisoft/yii2-app-basic",
	"description": "Yii 2 Basic Application Template",
4
	"keywords": ["yii2", "framework", "basic", "application template"],
5 6 7 8 9 10 11 12 13 14
	"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"
	},
Qiang Xue committed
15
	"minimum-stability": "dev",
16
	"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
		"yiisoft/yii2-gii": "*"
Qiang Xue committed
26
	},
27
	"suggest": {
28
		"codeception/codeception": "Codeception, 1.8.*@dev is currently works well with Yii.",
Alexander Makarov committed
29
		"codeception/specify": "BDD style code blocks for PHPUnit and Codeception",
30
		"codeception/verify": "BDD Assertions for PHPUnit and Codeception"
31
	},
Qiang Xue committed
32
	"scripts": {
33
		"post-create-project-cmd": [
Qiang Xue committed
34
			"yii\\composer\\Installer::setPermission"
Qiang Xue committed
35 36
		]
	},
37 38 39
	"config": {
		"process-timeout": 1800
	},
Qiang Xue committed
40
	"extra": {
Qiang Xue committed
41
		"writable": [
Qiang Xue committed
42
			"runtime",
43
			"web/assets"
Qiang Xue committed
44
		],
Qiang Xue committed
45
		"executable": [
Qiang Xue committed
46 47
			"yii"
		]
48 49
	}
}