-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.08 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.08 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
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
{
"name": "roundcube/carddav",
"type": "roundcube-plugin",
"description": "CardDAV adapter for connecting to CardDAV-enabled addressbooks",
"keywords": ["addressbook","carddav","contacts","owncloud","davical"],
"homepage": "https://www.benjamin-schieder.de/carddav.html",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Benjamin Schieder",
"email": "carddav@wegwerf.anderdonau.de",
"homepage": "https://www.benjamin.schieder.de/",
"role": "Developer"
},
{
"name": "Michael Stilkerich",
"email": "michael@stilkerich.eu",
"role": "Developer"
}
],
"require": {
"php": ">=7.4.0",
"ext-gd": "*",
"ext-json": "*",
"ext-pdo": "*",
"sabre/vobject": "^3.3.5 || ^4.0.0, !=4.5.2",
"roundcube/plugin-installer": "^0.3.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"mstilkerich/carddavclient": "^1.4.0"
},
"require-dev": {
"phpcompatibility/php-compatibility": "dev-develop",
"dealerdirect/phpcodesniffer-composer-installer": ">= 0.7.0",
"phpunit/phpunit": "~9",
"phpunit/phpcov": "*",
"aodto/phasher": "dev-master",
"bamarni/composer-bin-plugin": "^1.8"
},
"extra": {
"roundcube": {
"min-version": "1.4.0"
},
"bamarni-bin": {
"bin-links": false,
"target-directory": "vendor-bin",
"forward-command": false
}
},
"autoload": {
"psr-4": {
"MStilkerich\\RCMCardDAV\\": "src/"
},
"classmap": ["carddav.php", "dbmigrations/"]
},
"autoload-dev": {
"psr-4": {
"MStilkerich\\Tests\\RCMCardDAV\\": "tests/"
},
"classmap": ["roundcubemail/program/"]
},
"prefer-stable" : true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"roundcube/plugin-installer": true,
"bamarni/composer-bin-plugin": true
}
}
}