forked from andig/carddav2fb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 877 Bytes
/
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
{
"name": "andig/carddav2fb",
"description": "Download CardDAV VCards and upload as phonebook to AVM FRITZ!Box",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "andig",
"email": "[email protected]"
},
{
"name": "blacksenator",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"symfony/console": "^4.3|^5.0",
"guzzlehttp/guzzle": "^7.0",
"ringcentral/psr7": "^1.2",
"sabre/vobject": "^4.0",
"phpmailer/phpmailer": "^6.2",
"blacksenator/fritzdbf": "^1.0"
},
"autoload": {
"psr-4": {
"Andig\\": "src/",
"Test\\": "tests/"
},
"files": ["src/functions.php"]
},
"require-dev": {
"phpunit/phpunit": "^8|^9"
}
}