composer.json 736 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 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
		"smarty/smarty": ">=v3.1.13"
24 25
	},
	"autoload": {
26
		"psr-0": { "yii\\smarty\\": "" }
27 28
	},
	"target-dir": "yii/smarty"
29
}