This repository has been archived by the owner on Aug 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
57 lines (57 loc) · 1.99 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
{
"name" : "sabre/katana",
"type" : "project",
"description": "A CalDAV, CardDAV and WebDAV ready-to-use server on top of sabre/dav",
"homepage" : "http://sabre.io/katana/",
"license" : "AGPL-3.0",
"authors" : [
{
"name": "fruux"
}
],
"support": {
"forum" : "http://groups.google.com/group/sabredav-discuss",
"source": "https://github.com/fruux/sabre-katana/"
},
"require": {
"php" : ">=5.4.7",
"ext-spl" : "*",
"ext-pdo" : ">=1.0",
"sabre/dav" : "~3.0.1",
"hoa/console" : "~2.0",
"hoa/core" : "~2.0, >=2.15.04.13",
"hoa/dispatcher" : "~0.0, >=0.15.01.23",
"hoa/eventsource" : "~2.0",
"hoa/iterator" : "~1.0",
"hoa/mail" : "~0.0, >=0.15.06.03",
"hoa/mime" : "~2.0",
"hoa/router" : "~2.0",
"hoa/socket" : "~0.0, >=0.15.02.25",
"hoa/ustring" : "~3.0",
"hoa/stringbuffer" : "~0.0",
"hoa/file" : "~0.15.05.27",
"ircmaxell/password-compat": "~1.0"
},
"require-dev": {
"atoum/atoum" : "~2.4, >=2.4.1",
"atoum/praspel-extension" : "~0.1",
"atoum/ruler-extension" : "~1.0, >=1.0.2",
"sabre/cs" : "~0.0.4",
"hoa/regex" : "~0.15.08.13"
},
"suggest": {
"ext-pdo_sqlite": "If you decide to use SQLite.",
"ext-pdo_mysql" : "If you decide to use MySQL.",
"ext-phar" : "If you plan to package sabre/katana as a phar archive"
},
"autoload": {
"psr-4": {
"Sabre\\Katana\\": "lib/"
}
},
"bin": ["bin/katana"],
"config": {
"bin-dir" : "bin/",
"optimize-autoloader": true
}
}