composer.json 959 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 17 18 19 20 21
	"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": {
		"php": ">=5.3.0",
		"yiisoft/yii2": "dev-master",
		"yiisoft/yii2-composer": "dev-master"
	},
	"scripts": {
22
		"post-create-project-cmd": [
23 24 25 26 27
			"yii\\composer\\InstallHandler::setPermissions"
		]
	},
	"extra": {
		"yii-install-writable": [
28 29
			"backend/runtime",
			"backend/www/assets",
30 31 32 33 34 35 36 37 38

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

			"frontend/runtime",
			"frontend/www/assets"
		]
	}
}