forked from horde/Imap_Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.22 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
{
"name": "horde/imap-client",
"description": "IMAP client library",
"type": "library",
"homepage": "https://www.horde.org/libraries/Horde_Imap_Client",
"license": "LGPL-2.1",
"authors": [
{
"name": "Michael Slusarz",
"email": "[email protected]",
"role": "lead"
}
],
"require": {
"php": ">=7.3",
"ext-hash": "*",
"ext-json": "*",
"horde/exception": ">=106",
"horde/mail": ">=106",
"horde/mime": ">=106",
"horde/socket-client": ">=106",
"horde/stream": ">=106",
"horde/secret": ">=106",
"horde/stream-filter": ">=106",
"horde/translation": ">=106",
"horde/util": ">=106"
},
"suggest": {
"ext-intl": "*",
"ext-mbstring": "*",
"horde/cache": "^2",
"horde/compress-fast": "^1",
"horde/crypt-blowfish": "^1.1",
"horde/db": "^2.2",
"horde/hashtable": "^1",
"horde/mongo": "^1",
"horde/pack": "^1",
"horde/stringprep": "^1",
"horde/support": "^2",
"horde/test": "^2.2.7"
},
"autoload": {
"psr-0": {
"Horde_Imap_Client": "lib/"
}
}
}