composer.json 736 Bytes
Newer Older
Paul Klimov committed
1 2 3 4 5 6 7
{
	"name": "yiisoft/yii2-swiftmailer",
	"description": "The SwiftMailer integration for the Yii framework",
	"keywords": ["yii", "swift", "swiftmailer", "mail", "email", "mailer"],
	"type": "yii2-extension",
	"license": "BSD-3-Clause",
	"support": {
8
		"issues": "https://github.com/yiisoft/yii2/issues?labels=ext%3Aswiftmailer",
Paul Klimov committed
9 10 11 12 13 14 15 16 17
		"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": [
		{
			"name": "Paul Klimov",
			"email": "klimov.paul@gmail.com"
18
		}
Paul Klimov committed
19 20 21
	],
	"require": {
		"yiisoft/yii2": "*",
22
		"swiftmailer/swiftmailer": "*"
Paul Klimov committed
23 24
	},
	"autoload": {
Qiang Xue committed
25 26
		"psr-4": { "yii\\swiftmailer\\": "" }
	}
Paul Klimov committed
27
}