forked from horde/Imap_Client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.19 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
{
"name": "bytestream/horde-imap-client",
"description": "Horde 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.4 || ^8.0",
"bytestream/horde-exception": "^2",
"bytestream/horde-mail": "^2",
"bytestream/horde-mime": "^2.5.2",
"bytestream/horde-socket-client": "^2",
"bytestream/horde-stream": "^1.4",
"bytestream/horde-secret": "^2",
"bytestream/horde-stream-filter": "^2",
"bytestream/horde-translation": "^2.2",
"bytestream/horde-util": "^2",
"ext-hash": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"bytestream/horde-stringprep": "^1.1",
"bytestream/horde-crypt-blowfish": "^1.2"
},
"autoload": {
"psr-0": {
"Horde_Imap_Client": "lib/"
}
},
"autoload-dev": {
"psr-0": {
"Horde_Imap_Client": "test/"
}
}
}