-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.1 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.1 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
{
"name": "isubsoft/ldap-carddav",
"type": "project",
"description": "A CardDAV server with a LDAP server as contacts and authentication backend",
"homepage": "https://github.com/isubsoft/ldap-carddav",
"authors": [
{
"name": "ISub Softwares",
"email": "admin@isubsoft.com",
"homepage": "https://github.com/isubsoft",
"role": "developer"
}
],
"require": {
"php": ">=5.6",
"sabre/dav": "~3.2.3 || ~4.0.3",
"sabre/vobject": "~4.5.6",
"psr/simple-cache": "~1.0.1",
"sabre/cache": "~1.0.4 || ~2.0.2"
},
"autoload": {
"psr-4": {
"ISubsoft\\DAV\\": "src/DAV",
"ISubsoft\\VObject\\": "src/VObject",
"ISubsoft\\Cache\\": "src/Cache"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"keywords": ["server", "application", "WebDAV", "CardDAV", "LDAP", "interface"],
"license": "GPL-3.0-only",
"support": {
"wiki": "https://github.com/isubsoft/ldap-carddav/wiki",
"source": "https://github.com/isubsoft/ldap-carddav"
}
}