summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: b745b1fa6a9dc6b1e8e3fafd999046ffe91ad40f (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
    "name": "sabre/vobject",
    "description" : "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
    "keywords" : [
        "iCalendar",
        "iCal",
        "vCalendar",
        "vCard",
        "jCard",
        "jCal",
        "ics",
        "vcf",
        "xCard",
        "xCal",
        "freebusy",
        "recurrence",
        "availability",
        "rfc2425",
        "rfc2426",
        "rfc2739",
        "rfc4770",
        "rfc5545",
        "rfc5546",
        "rfc6321",
        "rfc6350",
        "rfc6351",
        "rfc6474",
        "rfc6638",
        "rfc6715",
        "rfc6868"
    ],
    "homepage" : "http://sabre.io/vobject/",
    "license" : "BSD-3-Clause",
    "require" : {
        "php"          : "^7.1 || ^8.0",
        "ext-mbstring" : "*",
        "sabre/xml"    : "^2.1"
    },
    "require-dev" : {
        "friendsofphp/php-cs-fixer": "~2.17.1",
        "phpunit/phpunit" : "^7.5 || ^8.5 || ^9.0",
        "phpunit/php-invoker" : "^2.0 || ^3.1",
        "phpstan/phpstan": "^0.12"
    },
    "suggest" : {
        "hoa/bench"       : "If you would like to run the benchmark scripts"
    },
    "authors" : [
        {
            "name" : "Evert Pot",
            "email" : "me@evertpot.com",
            "homepage" : "http://evertpot.com/",
            "role" : "Developer"
        },
        {
            "name" : "Dominik Tobschall",
            "email" : "dominik@fruux.com",
            "homepage" : "http://tobschall.de/",
            "role" : "Developer"
        },
        {
            "name" : "Ivan Enderlin",
            "email" : "ivan.enderlin@hoa-project.net",
            "homepage" : "http://mnt.io/",
            "role" : "Developer"
        }
    ],
    "support" : {
        "forum" : "https://groups.google.com/group/sabredav-discuss",
        "source" : "https://github.com/fruux/sabre-vobject"
    },
    "autoload" : {
        "psr-4" : {
            "Sabre\\VObject\\" : "lib/"
        }
    },
    "autoload-dev" : {
        "psr-4" : {
            "Sabre\\VObject\\" : "tests/VObject"
        }
    },
    "bin" : [
        "bin/vobject",
        "bin/generate_vcards"
    ],
    "extra" : {
        "branch-alias" : {
            "dev-master" : "4.0.x-dev"
        }
    },
    "scripts": {
        "phpstan": [
            "phpstan analyse lib tests"
        ],
        "cs-fixer": [
            "php-cs-fixer fix"
        ],
        "phpunit": [
            "phpunit --configuration tests/phpunit.xml"
        ],
        "test": [
            "composer phpstan",
            "composer cs-fixer",
            "composer phpunit"
        ]
    }
}