-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 970 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 970 Bytes
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
{
"name": "skeeks/cms-mailer",
"description": "Mailer for SkeekS CMS",
"keywords": ["yii", "skeeks", "framework", "component", "mailer"],
"homepage": "https://cms.skeeks.com/",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://cms.skeeks.com",
"wiki": "https://git.skeeks.com/skeeks/cms/wikis/home",
"source": "https://git.skeeks.com/skeeks/cms"
},
"authors": [
{
"name": "Semenov Alexander",
"email": "semenov@skeeks.com"
}
],
"require": {
"yiisoft/yii2-symfonymailer": "^3.0"
},
"autoload": {
"psr-4": {
"skeeks\\cms\\mail\\": "src/"
}
},
"extra": {
"config-plugin": {
"web": [
"src/config/common.php",
"src/config/web.php"
],
"console": [
"src/config/common.php",
"src/config/console.php"
]
}
}
}