-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
45 lines (45 loc) · 1021 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "yarcode/yii2-email-manager",
"description": "Yii2 Email Manager",
"license": "MIT",
"keywords": [
"yii2",
"email",
"email queue",
"email manager",
"module",
"component"
],
"authors": [
{
"name": "Valentin Konusov",
"email": "[email protected]",
"homepage": "http://valentinek.ru",
"role": "Developer"
},
{
"name": "Alexey Samoylov",
"email": "[email protected]",
"homepage": "http://yiiblog.ru",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2.0.4",
"mailgun/mailgun-php": "^2.0",
"yiisoft/yii2-twig": "~2.0.3",
"trntv/yii2-aceeditor": "~2.0",
"php-http/guzzle6-adapter": "~1.0",
"baibaratsky/yii2-serialized-attributes-behavior": "~1.1"
},
"suggest": {
"cboden/ratchet": "to use loop instead of for-cycle in daemon"
},
"autoload": {
"psr-4": {
"yarcode\\email\\": "./src"
}
}
}