-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.93 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "friendsofhyperf/mail",
"description": "The Mailer for Hyperf.",
"license": "MIT",
"type": "library",
"keywords": [
"hyperf",
"v3.1",
"mailer"
],
"authors": [
{
"name": "huangdijia",
"email": "huangdijia@gmail.com"
},
{
"name": "zds"
}
],
"support": {
"issues": "https://github.com/friendsofhyperf/components/issues",
"source": "https://github.com/friendsofhyperf/components",
"docs": "https://hyperf.fans",
"pull-request": "https://github.com/friendsofhyperf/components/pulls"
},
"require": {
"php": "^8.1",
"friendsofhyperf/support": "~3.1.0",
"hyperf/collection": "~3.1.0",
"hyperf/contract": "~3.1.0",
"hyperf/di": "~3.1.0",
"hyperf/macroable": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/view-engine": "~3.1.0",
"league/commonmark": "^2.2",
"symfony/mailer": "^6.4 || ^7.0",
"tijsverkoyen/css-to-inline-styles": "^2.2.5"
},
"suggest": {
"aws/aws-sdk-php": "Required to use the SES mail driver (^3.235.5).",
"hyperf/devtool": "Required to use the GeneratorCommand (~3.1.0).",
"symfony/http-client": "Required to use the Symfony API mail transports (^6.2).",
"symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
"symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2)."
},
"autoload": {
"psr-4": {
"FriendsOfHyperf\\Mail\\": "src/"
},
"files": [
"src/Functions.php"
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "3.1-dev"
},
"hyperf": {
"config": "FriendsOfHyperf\\Mail\\ConfigProvider"
}
}
}