-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
63 lines (63 loc) · 1.95 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
{
"name": "mstilkerich/carddavclient",
"description": "CardDAV client library to discover and synchronize with CardDAV servers",
"type": "library",
"keywords": ["addressbook","carddav","contacts","owncloud","nextcloud"],
"homepage": "https://github.com/mstilkerich/carddavclient",
"license": "MIT",
"authors": [
{
"name": "Michael Stilkerich",
"email": "[email protected]",
"homepage": "https://github.com/mstilkerich",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/mstilkerich/carddavclient/issues",
"source": "https://github.com/mstilkerich/carddavclient",
"docs": "https://github.com/mstilkerich/carddavclient"
},
"require": {
"php": ">=7.1.0",
"guzzlehttp/guzzle": "^6.0.0 || ^7.0.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"sabre/vobject": "^3.3.5 || ^4.0.0",
"sabre/xml": "^2.2 || ^3.0.0 || ^4.0.0",
"sabre/uri": "^2.2"
},
"autoload": {
"psr-4": {
"MStilkerich\\CardDavClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MStilkerich\\Tests\\CardDavClient\\": "tests/"
}
},
"require-dev": {
"phpcompatibility/php-compatibility": "dev-develop",
"dealerdirect/phpcodesniffer-composer-installer": ">= 0.7.0",
"phpunit/phpunit": "~9",
"phpunit/phpcov": "*",
"vimeo/psalm": "~5.23.0",
"psalm/plugin-phpunit": "*",
"alexeyshockov/guzzle-psalm-plugin": "*",
"donatj/mock-webserver": "*"
},
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
},
"prefer-stable" : true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}