composer.json 972 Bytes
Newer Older
1
{
2 3 4
	"name": "yiisoft/yii2-app-advanced",
	"description": "Yii 2 Advanced Application Template",
	"keywords": ["yii", "framework", "advanced", "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 20 21
		"yiisoft/yii2": "dev-master",
		"yiisoft/yii2-composer": "dev-master"
	},
	"scripts": {
22
		"post-create-project-cmd": [
23 24
			"yii\\composer\\InstallHandler::setPermissions",
			"./init"
25 26 27 28
		]
	},
	"extra": {
		"yii-install-writable": [
29
			"backend/runtime",
30
			"backend/web/assets",
31 32 33 34 35

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

			"frontend/runtime",
36
			"frontend/web/assets"
37 38 39
		]
	}
}