composer.json 708 Bytes
Newer Older
1 2 3 4
{
	"name": "yiisoft/yii2-smarty",
	"description": "The Smarty integration for the Yii framework",
	"keywords": ["yii", "smarty", "renderer"],
5
	"type": "yii2-extension",
6 7
	"license": "BSD-3-Clause",
	"support": {
8
		"issues": "https://github.com/yiisoft/yii2/issues?labels=ext%3Asmarty",
9 10 11 12 13 14 15
		"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
			"email": "sam@rmcreative.ru"
		}
	],
	"require": {
21
		"yiisoft/yii2": "*",
22
		"smarty/smarty": "*"
23 24
	},
	"autoload": {
25
		"psr-0": { "yii\\smarty\\": "" }
26 27
	},
	"target-dir": "yii/smarty"
28
}