forked from cypht-org/cypht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 2.24 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "cypht-org/cypht",
"type": "project",
"description": "Lightweight Open Source webmail written in PHP and JavaScript",
"keywords": ["php", "webmail", "webmail-client", "imap", "smtp", "news-reader", "rss", "atom", "e-mail", "jmap"],
"homepage": "https://cypht.org",
"license": "LGPL-2.1",
"stability": "dev",
"support": {
"email": "[email protected]",
"issues": "https://github.com/cypht-org/cypht/issues",
"chat": "https://gitter.im/cypht-org/community",
"wiki": "https://github.com/cypht-org/cypht/wiki",
"source": "https://github.com/cypht-org/cypht/",
"docs": "https://cypht.org/documentation.html"
},
"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.13.0",
"henrique-borba/php-sieve-manager": "dev-master",
"bacon/bacon-qr-code": "^1.0.3 || ^2.0.0",
"php": ">=5.4",
"ext-mbstring": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-openssl": "*",
"ext-session": "*",
"ext-fileinfo": "*",
"webklex/composer-info": "^0.0.1",
"composer" : "^2.0.0"
},
"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",
"ext-imagick":"To use 2fa, this needs to be installed for the QR code display"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"endroid/installer": false
}
},
"scripts": {
"post-update-cmd": "composer suggest",
"post-package-install":"composer suggest",
"post-install-cmd": "composer suggest"
}
}