Blame view

sources/3rdparty/sabre/dav/composer.json 1.51 KB
6d9380f96   Cédric Dupont   Update sources OC...
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
  {
      "name": "sabre/dav",
      "type": "library",
      "description": "WebDAV Framework for PHP",
      "keywords": ["Framework", "WebDAV", "CalDAV", "CardDAV", "iCalendar"],
      "homepage": "http://code.google.com/p/sabredav/",
      "license" : "BSD-3-Clause",
      "authors": [
          {
              "name": "Evert Pot",
              "email": "me@evertpot.com",
              "homepage" : "http://evertpot.com/",
              "role" : "Developer"
          }
      ],
      "require": {
          "php": ">=5.3.1",
          "sabre/vobject" : "~2.1.0",
          "ext-dom": "*",
          "ext-pcre": "*",
          "ext-spl": "*",
          "ext-simplexml": "*",
          "ext-mbstring" : "*",
          "ext-ctype" : "*",
          "ext-date" : "*",
          "ext-iconv" : "*",
          "ext-libxml" : "*"
      },
      "require-dev" : {
          "phpunit/phpunit" : "~4.0.0",
          "evert/phpdoc-md" : "~0.0.7"
      },
      "provide" : {
          "evert/sabredav" : "1.7.*"
      },
      "suggest" : {
          "ext-apc" : "*",
          "ext-curl" : "*",
          "ext-pdo" : "*"
      },
      "autoload": {
          "psr-0" : {
              "Sabre\\DAV"     : "lib/",
              "Sabre\\HTTP"    : "lib/",
              "Sabre\\DAVACL"  : "lib/",
              "Sabre\\CalDAV"  : "lib/",
              "Sabre\\CardDAV" : "lib/"
          }
      },
      "support" : {
          "forum" : "https://groups.google.com/group/sabredav-discuss",
          "source" : "https://github.com/evert/sabredav"
      },
      "bin" : [
          "bin/sabredav"
      ],
      "config" : {
          "bin-dir" : "./bin"
      }
  }