-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.6 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.6 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
{
"name": "exbil/mailcow-php-api",
"type": "library",
"description": "A full-featured implementation of the MailCow API with configurable SSL verification and timeout settings",
"keywords": [
"php-api-client",
"mailcow-api",
"api-client",
"mailcow",
"rest",
"php",
"api",
"mail-server",
"email-api"
],
"license": "GPL-3.0-or-later",
"version": "0.15.0",
"authors": [
{
"name": "Efe Bağrı",
"email": "composer@exbil.net",
"homepage": "https://www.exbil.net"
},
{
"name": "Kees van Kempen",
"homepage": "https://github.com/keessaus"
},
{
"name": "Bryan Böhnke-Avan",
"email": "github@openducks.org",
"homepage": "https://openducks.org"
}
],
"support": {
"issues": "https://github.com/exbil/mailcow-php-api/issues",
"source": "https://github.com/exbil/mailcow-php-api",
"docs": "https://github.com/exbil/mailcow-php-api#readme"
},
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^7.5",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Exbil\\Mailcow\\": "src/"
},
"files": ["src/MailCowAPI.php", "src/Credentials.php"],
"classmap": ["src"]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}