forked from cypht-org/cypht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (45 loc) · 1.58 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
{
"name": "jason-munro/cypht",
"type": "project",
"description": "Lightweight Open Source webmail written in PHP and JavaScript",
"keywords": ["php", "webmail", "webmail-client", "imap", "pop3", "smtp", "news-reader", "rss", "atom", "e-mail", "jmap"],
"homepage": "https://cypht.org",
"license": "LGPL-2.1",
"stability": "dev",
"support": {
"email": "[email protected]",
"irc": "irc://irc.freenode.org/hastymail",
"issues": "https://github.com/jasonmunro/cypht/issues"
},
"authors":[
{
"name": "Jason Munro",
"email": "[email protected]",
"homepage": "http://jasonmunro.net",
"role": "Project author and admin"
}
],
"require": {
"paragonie/random_compat": "2.0.18",
"erusev/parsedown": "1.8.0-beta-5",
"christian-riesen/base32": "1.3.2",
"ezyang/htmlpurifier": "4.10.0",
"codeitnowin/barcode": "3.0.3",
"php": ">=5.4",
"ext-mbstring": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-openssl": "*",
"ext-session": "*"
},
"suggest": {
"ext-PDO": "To use database features, this needs to be installed",
"ext-redis": "To use Redis for caching, this needs to be installed",
"ext-gd": "To use 2fa, this needs to be installed for the QR code display",
"ext-memcached": "To use Memcached for caching, this needs to be installed",
"ext-gnupg": "To use the PGP module set, this needs to be installed"
},
"config": {
"optimize-autoloader": true
}
}