summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 226b2cb30c781b5c2e49c9ad1d4e5a40136a3732 (plain)
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
{
    "name": "sabre/dav",
    "type": "library",
    "description": "WebDAV Framework for PHP",
    "keywords": ["Framework", "WebDAV", "CalDAV", "CardDAV", "iCalendar"],
    "homepage": "http://sabre.io/",
    "license" : "BSD-3-Clause",
    "authors": [
        {
            "name": "Evert Pot",
            "email": "me@evertpot.com",
            "homepage" : "http://evertpot.com/",
            "role" : "Developer"
        }
    ],
    "require": {
        "php": ">=7.0.0",
        "sabre/vobject": "^4.2.0-alpha1",
        "sabre/event" : "^5.0",
        "sabre/xml"  : "^2.0.1",
        "sabre/http" : "^5.0",
        "sabre/uri" : "^2.0",
        "ext-dom": "*",
        "ext-pcre": "*",
        "ext-spl": "*",
        "ext-simplexml": "*",
        "ext-mbstring" : "*",
        "ext-ctype" : "*",
        "ext-date" : "*",
        "ext-iconv" : "*",
        "lib-libxml" : ">=2.7.0",
        "psr/log": "^1.0",
        "ext-json": "*"
    },
    "require-dev" : {
        "phpunit/phpunit" : "^6",
        "evert/phpdoc-md" : "~0.1.0",
        "monolog/monolog": "^1.18"
    },
    "suggest" : {
        "ext-curl" : "*",
        "ext-pdo" : "*",
        "ext-imap": "*"
    },
    "autoload": {
        "psr-4" : {
            "Sabre\\DAV\\"     : "lib/DAV/",
            "Sabre\\DAVACL\\"  : "lib/DAVACL/",
            "Sabre\\CalDAV\\"  : "lib/CalDAV/",
            "Sabre\\CardDAV\\" : "lib/CardDAV/"
        }
    },
    "support" : {
        "forum" : "https://groups.google.com/group/sabredav-discuss",
        "source" : "https://github.com/fruux/sabre-dav"
    },
    "bin" : [
        "bin/sabredav",
        "bin/naturalselection"
    ],
    "config" : {
        "bin-dir" : "./bin"
    }
}