-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.47 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.47 KB
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
{
"name": "horde/rpc",
"description": "RPC library",
"type": "horde-library",
"homepage": "https://www.horde.org/libraries/Horde_Rpc",
"license": "LGPL-2.1-only",
"authors": [
{
"name": "Jan Schneider",
"email": "jan@horde.org",
"role": "lead"
},
{
"name": "Michael J Rubinsky",
"email": "mrubinsk@horde.org",
"role": "developer"
},
{
"name": "Chuck Hagenbuch",
"email": "chuck@horde.org",
"role": "lead"
}
],
"keywords": [
"soap",
"jsonrpc",
"json-rpc",
"psr-15",
"activesync"
],
"time": "2026-04-29",
"repositories": [],
"require": {
"horde/horde-installer-plugin": "dev-FRAMEWORK_6_0 || ^3 || ^2",
"php": "^8.2",
"horde/exception": "^3 || dev-FRAMEWORK_6_0",
"horde/perms": "^3 || dev-FRAMEWORK_6_0",
"horde/serialize": "^3 || dev-FRAMEWORK_6_0",
"horde/support": "^3 || dev-FRAMEWORK_6_0",
"horde/translation": "^3 || dev-FRAMEWORK_6_0",
"horde/util": "^3 || dev-FRAMEWORK_6_0",
"horde/xml_element": "^3 || dev-FRAMEWORK_6_0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"horde/activesync": "^3 || dev-FRAMEWORK_6_0",
"horde/http": "^3 || dev-FRAMEWORK_6_0"
},
"suggest": {
"horde/core": "^3 || dev-FRAMEWORK_6_0",
"horde/dav": "^2 || dev-FRAMEWORK_6_0",
"horde/http": "^3 || dev-FRAMEWORK_6_0",
"horde/activesync": "^3 || dev-FRAMEWORK_6_0",
"horde/eventdispatcher": "^3 || dev-FRAMEWORK_6_0",
"horde/lock": "^3 || dev-FRAMEWORK_6_0",
"horde/syncml": "^3 || dev-FRAMEWORK_6_0",
"ext-soap": "*",
"ext-xmlrpc": "*"
},
"autoload": {
"psr-0": {
"Horde_Rpc": "lib/"
},
"psr-4": {
"Horde\\Rpc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Horde\\Rpc\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"horde/horde-installer-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-FRAMEWORK_6_0": "3.x-dev"
}
}
}