-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 874 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 874 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
{
"name": "metarush/email-fallback",
"type": "library",
"description": "Send email via SMTP host, if it fails, fallback/failover to another SMTP host. Round-robin mode also available to distribute the load to all SMTP hosts.",
"keywords": ["php", "email", "smtp", "fallback", "failover", "mail", "round-robin"],
"license": "MIT",
"authors": [
{
"name": "metarush/email-fallback contributors",
"homepage": "https://github.com/metarush/email-fallback/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"MetaRush\\EmailFallback\\": "src"
}
},
"require": {
"php": ">=8.0",
"phpmailer/phpmailer": "^6.0",
"phpfastcache/phpfastcache": "^9.0"
},
"require-dev": {
"vlucas/phpdotenv": "^3.3",
"phpunit/phpunit": "^9.0"
}
}