forked from yunwuxin/think-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 955 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
{
"name": "yunwuxin/think-mail",
"description": "The Mailer Library For ThinkPHP6",
"require": {
"swiftmailer/swiftmailer": "^6.2",
"topthink/think-queue": "^3.0",
"cebe/markdown": "^1.1",
"yunwuxin/think-twig": "^3.0",
"tijsverkoyen/css-to-inline-styles": "^2.2",
"topthink/framework": "^6.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.0"
},
"license": "Apache-2.0",
"authors": [
{
"name": "yunwuxin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"yunwuxin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"think\\tests\\": "tests/"
}
},
"extra": {
"think": {
"config": {
"mail": "src/config.php"
}
}
}
}