-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.61 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.61 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "hyperf-ext/mail",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"mail"
],
"description": "The Hyperf Mail package.",
"authors": [
{
"name": "Eric Zhu",
"email": "eric@zhu.email"
},
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
},
{
"name": "Volodymyr Mikhav",
"email": "mihaw.wolodymyr@gmail.com"
}
],
"autoload": {
"psr-4": {
"HyperfExt\\Mail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Mail\\": "tests"
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-swoole": ">=4.5",
"hyperf-ext/contract": "~2.2.0",
"hyperf/async-queue": "~2.2.0",
"hyperf/command": "~2.2.0",
"hyperf/config": "~2.2.0",
"hyperf/devtool": "~2.2.0",
"hyperf/di": "~2.2.0",
"hyperf/event": "~2.2.0",
"hyperf/filesystem": "~2.2.0",
"hyperf/framework": "~2.2.0",
"hyperf/translation": "~2.2.0",
"hyperf/view": "~2.2.0",
"symfony/mailer": "^6.0.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"hyperf/testing": "~2.2.0",
"phpstan/phpstan": "^0.12",
"swoole/ide-helper": "dev-master",
"mockery/mockery": "^1.0"
},
"suggest": {
"hyperf/guzzle": "Required to use the mail driver (^2.0).",
"symfony/amazon-mailer": "Required to use the AWS SES mail driver.",
"symfony/google-mailer": "Required to use the Gmail mail driver.",
"symfony/mailchimp-mailer": "Required to use the Mailchimp mail driver.",
"symfony/mailgun-mailer": "Required to use the Mailgun mail driver.",
"symfony/mailjet-mailer": "Required to use the Mailjet mail driver.",
"symfony/postmark-mailer": "Required to use the Postmark mail driver.",
"symfony/sendgrid-mailer": "Required to use the SendGrid mail driver.",
"symfony/sendinblue-mailer": "Required to use the Sendinblue mail driver.",
"symfony/oh-my-smtp-mailer": "Required to use the OhMySMTP mail driver."
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "co-phpunit --prepend tests/bootstrap.php -c phpunit.xml --colors=always",
"analyse": "phpstan analyse --memory-limit 1024M -l 0 ./src",
"cs-fix": "php-cs-fixer fix $1"
},
"extra": {
"hyperf": {
"config": "HyperfExt\\Mail\\ConfigProvider"
}
}
}