forked from Exbil/mailcow-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (50 loc) · 1.25 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
{
"name": "ente/mailcow-php-api",
"type": "library",
"description": "A full-featured implementation of the MailCow API",
"keywords": [
"php-api-client",
"mailcow-api",
"api-client",
"mailcow",
"rest",
"php",
"api"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Efe Bagri",
"email": "[email protected]",
"homepage": "https://www.exbil.net"
},
{
"name": "Kees van Kempen",
"homepage": "https://github.com/keessaus"
},
{
"name": "Bryan Böhnke-Avan",
"email": "[email protected]",
"homepage": "https://openducks.org"
}
],
"support": {
"issues": "https://github.com/exbil/mailcow-php-api/issues",
"source": "https://github.com/exbil/mailcow-php-api"
},
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^7.5",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.0"
},
"autoload": {
"psr-4": {
"Exbil\\Mailcow\\": "src/"
},
"files": ["src/MailCowAPI.php", "src/Credentials.php"],
"classmap": ["src"]
}
}