-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 960 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
{
"name": "emedia-intellect/emi-emailer",
"description": "A simple cross-platform object-oriented SMTP client.",
"type": "library",
"keywords": ["client", "email", "sender", "smtp"],
"homepage": "https://emi.is/?page=solutions&solution=emi-emailer",
"license": "GPL-3.0",
"authors":
[
{
"name": "Stefán Örvar Sigmundsson",
"email": "[email protected]",
"homepage": "https://sos.emi.is/",
"role": "programmer"
}
],
"support":
{
"email": "[email protected]",
"source": "https://github.com/eMedia-Intellect/eMI-eMailer"
},
"require":
{
"php": ">=7.2"
},
"autoload":
{
"classmap":
[
"Library/Exceptions/CommunicationException.php",
"Library/Exceptions/ExtensionException.php",
"Library/Exceptions/MailFromException.php",
"Library/Exceptions/SocketException.php",
"Library/MimeBodyPart.php",
"Library/MimeMultipartBodyPart.php",
"Library/MimeMessage.php",
"Library/SmtpClient.php"
]
}
}