-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (42 loc) · 1.06 KB
/
composer.json
File metadata and controls
43 lines (42 loc) · 1.06 KB
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
{
"name": "audriga/nextcloud-jmap",
"description": "JMAP support for Nextcloud",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Stanimir Bozhilov",
"email": "stanimir@audriga.com"
},
{
"name": "Joris Baum",
"email": "joris@audriga.com"
}
],
"require": {
"php": ">=5.6.0",
"audriga/jmap-openxport": "~1",
"audriga/jmap-icalendar_vcard": ">=0.0.1",
"sabre/xml": "~2"
},
"require-dev": {
"christophwurst/nextcloud_testing": "^1.0.0",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"classmap": ["lib/"]
},
"repositories": {
"openxport": {
"type": "vcs",
"url": "git@github.com:audriga/openxport-jmap.git"
},
"icalendar": {
"type": "vcs",
"url": "git@github.com:audriga/jmap-php-icalendar_vcard.git"
}
},
"archive": {
"exclude": ["/tests", "/build", "/README.md"]
}
}