-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
137 lines (137 loc) · 4.44 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"minimum-stability": "dev",
"name": "horde/horde",
"description": "Horde base application",
"type": "horde-application",
"homepage": "https://www.horde.org/apps/horde",
"license": "LGPL-2",
"authors": [
{
"name": "Jan Schneider",
"email": "jan@horde.org",
"role": "lead"
},
{
"name": "Michael J Rubinsky",
"email": "mrubinsk@horde.org",
"role": "lead"
},
{
"name": "Michael Slusarz",
"email": "slusarz@horde.org",
"role": "lead"
},
{
"name": "Chuck Hagenbuch",
"email": "chuck@horde.org",
"role": "lead"
}
],
"time": "2022-11-04",
"repositories": [
{
"type": "composer",
"url": "https://horde-satis.maintaina.com"
}
],
"require": {
"horde/horde-installer-plugin": "dev-FRAMEWORK_6_0 || ^2",
"php": "^7.4 || ^8",
"horde/alarm": "^3 || dev-FRAMEWORK_6_0",
"horde/argv": "^3 || dev-FRAMEWORK_6_0",
"horde/auth": "^3 || dev-FRAMEWORK_6_0",
"horde/autoloader": "^3 || dev-FRAMEWORK_6_0",
"horde/browser": "^3 || dev-FRAMEWORK_6_0",
"horde/core": "^3 || dev-FRAMEWORK_6_0",
"horde/date": "^3 || dev-FRAMEWORK_6_0",
"horde/exception": "^3 || dev-FRAMEWORK_6_0",
"horde/form": "^3 || dev-FRAMEWORK_6_0",
"horde/group": "^3 || dev-FRAMEWORK_6_0",
"horde/http": "^3 || dev-FRAMEWORK_6_0",
"horde/image": "^3 || dev-FRAMEWORK_6_0",
"horde/logintasks": "^3 || dev-FRAMEWORK_6_0",
"horde/mail": "^3 || dev-FRAMEWORK_6_0",
"horde/mime": "^3 || dev-FRAMEWORK_6_0",
"horde/nls": "^3 || dev-FRAMEWORK_6_0",
"horde/perms": "^3 || dev-FRAMEWORK_6_0",
"horde/prefs": "^3 || dev-FRAMEWORK_6_0",
"horde/rpc": "^3 || dev-FRAMEWORK_6_0",
"horde/serialize": "^3 || dev-FRAMEWORK_6_0",
"horde/support": "^3 || dev-FRAMEWORK_6_0",
"horde/text_diff": "^3 || dev-FRAMEWORK_6_0",
"horde/token": "^3 || dev-FRAMEWORK_6_0",
"horde/text_filter": "^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/view": "^3 || dev-FRAMEWORK_6_0",
"horde/vfs": "^3 || dev-FRAMEWORK_6_0",
"ext-filter": "*",
"ext-gettext": "*",
"ext-hash": "*"
},
"require-dev": {
"horde/test": "^3 || dev-FRAMEWORK_6_0"
},
"suggest": {
"pear/net_dns2": "*",
"horde/activeSync": "^3 || dev-FRAMEWORK_6_0",
"horde/backup": "^2 || dev-FRAMEWORK_6_0",
"horde/cli_application": "^2 || dev-FRAMEWORK_6_0",
"horde/db": "^3 || dev-FRAMEWORK_6_0",
"horde/feed": "^3 || dev-FRAMEWORK_6_0",
"horde/oauth": "^3 || dev-FRAMEWORK_6_0",
"horde/openxchange": "^2 || dev-FRAMEWORK_6_0",
"horde/service_facebook": "^3 || dev-FRAMEWORK_6_0",
"horde/service_twitter": "^3 || dev-FRAMEWORK_6_0",
"horde/service_weather": "^3 || dev-FRAMEWORK_6_0",
"horde/syncml": "^3 || dev-FRAMEWORK_6_0",
"pear/console_table": "^1.3",
"pear/console_getopt": "^1.4",
"pear/console_color2": "^0.1.2",
"pear/file_fstab": "*",
"ext-iconv": "*"
},
"autoload": {
"classmap": [
"lib/"
],
"psr-4": {
"Horde\\Horde\\": "/src"
}
},
"autoload-dev": {
"psr-4": {
"Horde\\Horde\\Test\\": "test/"
}
},
"bin": [
"bin/horde-active-sessions",
"bin/horde-alarms",
"bin/horde-backup",
"bin/horde-check-logger",
"bin/horde-clear-cache",
"bin/horde-crond",
"bin/horde-db-migrate",
"bin/horde-import-openxchange-prefs",
"bin/horde-import-squirrelmail-prefs",
"bin/horde-memcache-stats",
"bin/horde-pref-remove",
"bin/horde-queue-run-tasks",
"bin/horde-remove-user-data",
"bin/horde-run-task",
"bin/horde-sessions-gc",
"bin/horde-set-perms",
"bin/horde-sql-shell",
"bin/horde-themes",
"bin/horde-translation"
],
"config": {
"allow-plugins": {
"horde/horde-installer-plugin": true
}
},
"provide": {
"horde/base": "^6"
}
}