composer.json 692 Bytes
Newer Older
1 2 3 4
{
	"name": "yiisoft/yii2-twig",
	"description": "The Twig integration for the Yii framework",
	"keywords": ["yii", "twig", "renderer"],
5
	"type": "yii2-extension",
6 7 8 9 10 11 12 13 14 15
	"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"
	},
	"authors": [
		{
16
			"name": "Alexander Makarov",
17 18 19 20 21
			"email": "sam@rmcreative.ru"
		}
	],
	"minimum-stability": "dev",
	"require": {
22
		"yiisoft/yii2": "*",
23
		"twig/twig": "1.13.*"
24 25
	},
	"autoload": {
26
		"psr-0": { "yii\\twig\\": "" }
27 28
	}
}