composer.json 1.41 KB
Newer Older
1
{
2 3
	"name": "yiisoft/yii2-app-advanced",
	"description": "Yii 2 Advanced Application Template",
4
	"keywords": ["yii2", "framework", "advanced", "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": {
Mark committed
23
		"yiisoft/yii2-codeception": "*",
24 25
		"yiisoft/yii2-debug": "*",
		"yiisoft/yii2-gii": "*"
26
	},
Mark committed
27 28 29 30 31 32
	"suggest": {
		"codeception/codeception": "Codeception, 1.8.*@dev is currently works well with Yii.",
		"codeception/specify": "BDD style code blocks for PHPUnit and Codeception",
		"codeception/verify": "BDD Assertions for PHPUnit and Codeception",
		"yiisoft/yii2-faker": "Fixtures generator for Yii2 based on Faker lib"
	},
33
	"scripts": {
34
		"post-create-project-cmd": [
35
			"yii\\composer\\Installer::setPermission"
36 37
		]
	},
38 39 40
	"config": {
		"process-timeout": 1800
	},
41
	"extra": {
Qiang Xue committed
42
		"writable": [
43
			"backend/runtime",
44
			"backend/web/assets",
45 46 47 48 49

			"console/runtime",
			"console/migrations",

			"frontend/runtime",
50
			"frontend/web/assets"
51 52 53
		]
	}
}