forked from meditorial/mailkit-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.08 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.08 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
{
"name": "meditorial/mailkit-api",
"type": "library",
"description": "Mailkit api client library",
"keywords": [
"igloonet",
"mailkit",
"mail",
"spojenet",
"api",
"client"
],
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Vítězslav Dvořák",
"email": "vitezslav.dvorak@spojenet.cz"
},
{
"name": "Miroslav Čížek",
"email": "cizek@iglonet.cz"
},
{
"name": "Roman Braciník",
"email": "fejjo@igloonet.cz"
}
],
"require": {
"php": ">=8.1",
"nette/utils": "^4.0",
"ext-xmlrpc": "*"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"nette/tester": "^2.5",
"tracy/tracy": "^2.10",
"friendsofphp/php-cs-fixer": "^3.61",
"ergebnis/composer-normalize": "^2.43",
"ergebnis/php-cs-fixer-config": "^6.34"
},
"autoload": {
"psr-4": {
"Igloonet\\MailkitApi\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/IgloonetTests"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}