forked from sabre-io/dav
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
92 lines (92 loc) · 2.55 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
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
{
"name" : "syncgw/sabredav",
"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"
},
{
"name" : "Florian Däumling",
"homepage" : "https://github.com/toteph42",
"role" : "Developer"
}
],
"require": {
"php": "^7.4.0 || ^8.0",
"ext-ctype": "*",
"ext-date": "*",
"ext-dom": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-simplexml": "*",
"ext-spl": "*",
"lib-libxml": ">=2.7.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"sabre/event": "^6.0",
"sabre/http": "^7.0",
"sabre/vobject": "^4.5"
},
"require-dev" : {
"friendsofphp/php-cs-fixer" : "^2.19",
"phpstan/phpstan" : "^0.12",
"phpunit/phpunit" : "^7.5 || ^8.5 || ^9.6",
"monolog/monolog" : "^1.27"
},
"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/"
}
},
"autoload-dev" : {
"psr-4" : {
"Sabre\\" : "tests/Sabre/",
"Sabre\\CalDAV\\" : "tests/Sabre/CalDAV",
"Sabre\\CardDAV\\" : "tests/Sabre/CardDAV",
"Sabre\\DAV\\" : "tests/Sabre/DAV",
"Sabre\\DAV\\Property\\" : "tests/Sabre/DAV/Xml/Property",
"Sabre\\DAVACL\\" : "tests/Sabre/DAVACL",
"Sabre\\HTTP\\" : "tests/Sabre/HTTP"
}
},
"support" : {
"forum" : "https://groups.google.com/group/sabredav-discuss",
"source" : "https://github.com/fruux/sabre-dav"
},
"bin" : [
"bin/sabredav",
"bin/naturalselection"
],
"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"
]
}
}