forked from cypht-org/cypht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 2.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "cypht-org/cypht",
"description": "Lightweight Open Source webmail written in PHP and JavaScript",
"type": "project",
"keywords": [
"php",
"webmail",
"webmail-client",
"imap",
"smtp",
"news-reader",
"rss",
"atom",
"e-mail",
"jmap",
"cypht",
"sieve",
"managesieve"
],
"homepage": "https://cypht.org",
"license": "LGPL-2.1",
"authors": [
{
"name": "Jason Munro",
"email": "[email protected]",
"homepage": "http://jasonmunro.net",
"role": "Project author and admin"
}
],
"support": {
"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"
},
"require": {
"bacon/bacon-qr-code": "^1.0.3 || ^2.0.0",
"christian-riesen/base32": "^1.3.2",
"composer": "^2.0.0",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-session": "*",
"ezyang/htmlpurifier": "^4.17",
"henrique-borba/php-sieve-manager": "^1.0",
"league/commonmark": "^2.4",
"paragonie/random_compat": "^2.0.18",
"php": ">=8.1",
"symfony/dotenv": "^4.3 || 5.4",
"symfony/yaml": "~6.4.3",
"thomaspark/bootswatch": "^5.3",
"twbs/bootstrap": "^5.3",
"twbs/bootstrap-icons": "^1.11",
"webklex/composer-info": "^0.0.1",
"zbateson/mail-mime-parser": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"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": {
"platform": {
"php": "8.1"
},
"optimize-autoloader": true,
"allow-plugins": {
"endroid/installer": false
}
},
"scripts": {
"post-update-cmd": "composer suggest",
"post-package-install": "composer suggest",
"post-install-cmd": "composer suggest"
}
}