-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 889 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
42
43
44
{
"name": "actweb/mail-auth",
"description": "Mail server authentication class, allows authenticating users against POP/IMAP/SMTP with or without SSL",
"version": "0.6",
"type": "library",
"keywords": [
"pop3",
"pop3s",
"imap",
"imaps",
"smtp",
"smtps",
"authenticate",
"auth"
],
"homepage": "https://actweb.co.uk/php/actweb/mailauth",
"license": "GPL-3.0",
"authors": [
{
"name": "Matt Lowe",
"email": "[email protected]",
"homepage": "https://actweb.co.uk/php/who",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.actweb.co.uk"
}
],
"require": {
"monolog/monolog": "1.9.*",
"ext-imap": "*"
},
"autoload": {
"psr-4": {
"Actweb\\": "src/"
}
}
}