forked from mstilkerich/rcmcarddav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.9 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
{
"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": "[email protected]",
"homepage": "https://www.benjamin.schieder.de/",
"role": "Developer"
},
{
"name": "Michael Stilkerich",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0",
"ext-gd": "*",
"ext-json": "*",
"ext-pdo": "*",
"sabre/vobject": "^3.3.5 || ^4.0.0",
"roundcube/plugin-installer": "^0.3.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"mstilkerich/carddavclient": "dev-master"
},
"require-dev": {
"vimeo/psalm": ">= 3.11",
"phpcompatibility/php-compatibility": "*",
"phpunit/phpunit": "~9",
"phpunit/phpcov": "*",
"dealerdirect/phpcodesniffer-composer-installer": ">= 0.7.0",
"aodto/phasher": "dev-master",
"psalm/plugin-phpunit": "^0.15.0"
},
"extra": {
"roundcube": {
"min-version": "1.2.0"
}
},
"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
}
}
}