1{
2    "name": "sabre/vobject",
3    "description" : "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
4    "keywords" : [
5        "iCalendar",
6        "iCal",
7        "vCalendar",
8        "vCard",
9        "jCard",
10        "jCal",
11        "ics",
12        "vcf",
13        "xCard",
14        "xCal",
15        "freebusy",
16        "recurrence",
17        "availability",
18        "rfc2425",
19        "rfc2426",
20        "rfc2739",
21        "rfc4770",
22        "rfc5545",
23        "rfc5546",
24        "rfc6321",
25        "rfc6350",
26        "rfc6351",
27        "rfc6474",
28        "rfc6638",
29        "rfc6715",
30        "rfc6868"
31    ],
32    "homepage" : "http://sabre.io/vobject/",
33    "license" : "BSD-3-Clause",
34    "require" : {
35        "php"          : ">=5.5",
36        "ext-mbstring" : "*",
37        "sabre/xml"    : ">=1.5 <3.0"
38    },
39    "require-dev" : {
40        "phpunit/phpunit" : "> 4.8.35, <6.0.0"
41    },
42    "suggest" : {
43        "hoa/bench"       : "If you would like to run the benchmark scripts"
44    },
45    "authors" : [
46        {
47            "name" : "Evert Pot",
48            "email" : "me@evertpot.com",
49            "homepage" : "http://evertpot.com/",
50            "role" : "Developer"
51        },
52        {
53            "name" : "Dominik Tobschall",
54            "email" : "dominik@fruux.com",
55            "homepage" : "http://tobschall.de/",
56            "role" : "Developer"
57        },
58        {
59            "name" : "Ivan Enderlin",
60            "email" : "ivan.enderlin@hoa-project.net",
61            "homepage" : "http://mnt.io/",
62            "role" : "Developer"
63        }
64    ],
65    "support" : {
66        "forum" : "https://groups.google.com/group/sabredav-discuss",
67        "source" : "https://github.com/fruux/sabre-vobject"
68    },
69    "autoload" : {
70        "psr-4" : {
71            "Sabre\\VObject\\" : "lib/"
72        }
73    },
74    "autoload-dev" : {
75        "psr-4" : {
76            "Sabre\\VObject\\" : "tests/VObject"
77        }
78    },
79    "bin" : [
80        "bin/vobject",
81        "bin/generate_vcards"
82    ],
83    "extra" : {
84        "branch-alias" : {
85            "dev-master" : "4.0.x-dev"
86        }
87    },
88    "config" : {
89        "bin-dir" : "bin"
90    }
91}
92