-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
31 lines (31 loc) · 1.04 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
{
"name" : "kopano/dav",
"description" : "This is Kopano DAV implementation",
"require": {
"sabre/dav" : "~3.2.0",
"apache/log4php" : "~2.3.0"
},
"require-dev": {
"phpunit/phpunit" : "~5.7.0"
},
"license" : "AGPL v3",
"authors": [
{
"name" : "Manfred Kutas",
"email" : "[email protected]",
"role" : "Developer"
},
{
"name" : "Sebastian Kummer",
"email" : "[email protected]",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"Kopano\\DAV\\" : "lib/"
},
"files" : ["config.php", "version.php", "mapi/mapi.util.php", "mapi/mapicode.php", "mapi/mapidefs.php", "mapi/mapiguid.php", "mapi/mapitags.php", "mapi/class.baserecurrence.php", "mapi/class.recurrence.php", "mapi/class.freebusypublish.php"]
},
"minimum-stability" : "stable"
}