-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
114 lines (114 loc) · 3.89 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"minimum-stability": "dev",
"name": "horde/imp",
"description": "Webmail application",
"type": "horde-application",
"homepage": "https://www.horde.org/apps/imp",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Jan Schneider",
"email": "[email protected]",
"role": "lead"
},
{
"name": "Michael Slusarz",
"email": "[email protected]",
"role": "lead"
},
{
"name": "Chuck Hagenbuch",
"email": "[email protected]",
"role": "lead"
}
],
"time": "2023-09-22",
"repositories": [
{
"type": "composer",
"url": "https://horde-satis.maintaina.com"
}
],
"require": {
"horde/horde-installer-plugin": "dev-FRAMEWORK_6_0 || ^2",
"php": "^7.4 || ^8",
"horde/horde": "^6 || dev-FRAMEWORK_6_0",
"horde/auth": "^3 || dev-FRAMEWORK_6_0",
"horde/browser": "^3 || dev-FRAMEWORK_6_0",
"horde/cache": "^3 || dev-FRAMEWORK_6_0",
"horde/compress": "^3 || dev-FRAMEWORK_6_0",
"horde/core": "^3 || dev-FRAMEWORK_6_0",
"horde/crypt": "^3 || dev-FRAMEWORK_6_0",
"horde/crypt_blowfish": "^2 || dev-FRAMEWORK_6_0",
"horde/css_parser": "^2 || dev-FRAMEWORK_6_0",
"horde/date": "^3 || dev-FRAMEWORK_6_0",
"horde/editor": "^3 || dev-FRAMEWORK_6_0",
"horde/exception": "^3 || dev-FRAMEWORK_6_0",
"horde/icalendar": "^3 || dev-FRAMEWORK_6_0",
"horde/image": "^3 || dev-FRAMEWORK_6_0",
"horde/imap_client": "^3 || dev-FRAMEWORK_6_0",
"horde/itip": "^3 || dev-FRAMEWORK_6_0",
"horde/listheaders": "^2 || dev-FRAMEWORK_6_0",
"horde/logintasks": "^3 || dev-FRAMEWORK_6_0",
"horde/mail": "^3 || dev-FRAMEWORK_6_0",
"horde/mail_autoconfig": "^2 || dev-FRAMEWORK_6_0",
"horde/mime": "^3 || dev-FRAMEWORK_6_0",
"horde/mime_viewer": "^3 || dev-FRAMEWORK_6_0",
"horde/nls": "^3 || dev-FRAMEWORK_6_0",
"horde/notification": "^3 || dev-FRAMEWORK_6_0",
"horde/pack": "^2 || dev-FRAMEWORK_6_0",
"horde/perms": "^3 || dev-FRAMEWORK_6_0",
"horde/spellchecker": "^3 || dev-FRAMEWORK_6_0",
"horde/stream": "^2 || dev-FRAMEWORK_6_0",
"horde/stream_filter": "^3 || dev-FRAMEWORK_6_0",
"horde/stream_wrapper": "^3 || dev-FRAMEWORK_6_0",
"horde/support": "^3 || dev-FRAMEWORK_6_0",
"horde/text_filter": "^3 || dev-FRAMEWORK_6_0",
"horde/text_flowed": "^3 || dev-FRAMEWORK_6_0",
"horde/tree": "^3 || dev-FRAMEWORK_6_0",
"horde/url": "^3 || dev-FRAMEWORK_6_0",
"horde/util": "^3 || dev-FRAMEWORK_6_0",
"horde/vfs": "^3 || dev-FRAMEWORK_6_0",
"horde/view": "^3 || dev-FRAMEWORK_6_0",
"ext-dom": "*",
"ext-gettext": "*",
"ext-hash": "*",
"ext-json": "*"
},
"require-dev": {
"horde/test": "^3 || dev-FRAMEWORK_6_0",
"horde/mongo": "^2 || dev-FRAMEWORK_6_0",
"horde/kronolith": "^5 || dev-FRAMEWORK_6_0",
"horde/nag": "^5 || dev-FRAMEWORK_6_0"
},
"suggest": {
"horde/history": "^3 || dev-FRAMEWORK_6_0",
"horde/http": "^3 || dev-FRAMEWORK_6_0",
"horde/mongo": "^2 || dev-FRAMEWORK_6_0",
"horde/service_gravatar": "^2 || dev-FRAMEWORK_6_0",
"ext-openssl": "*"
},
"autoload": {
"psr-0": {
"IMP": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Horde\\IMP\\Test\\": "test/"
}
},
"bin": [
"bin/imp-admin-upgrade",
"bin/imp-bounce-spam",
"bin/imp-mailbox-decode",
"bin/imp-query-imap-cache",
"bin/imp-test-imap",
"bin/imp-test-smtp"
],
"config": {
"allow-plugins": {
"horde/horde-installer-plugin": true
}
}
}