-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 981 Bytes
/
composer.json
File metadata and controls
45 lines (45 loc) · 981 Bytes
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
{
"name" : "xqueue/maileon-api-client",
"description" : "API-Client to XQ:Maileon",
"keywords" : [
"XQueue",
"Maileon"
],
"homepage" : "https://www.maileon.de",
"type" : "library",
"license" : "MIT",
"authors" : [{
"name" : "XQueue GmbH, Marcus Beckerle",
"email" : "marcus.beckerle@xqueue.com"
}, {
"name" : "XQueue GmbH, Andreas Lange",
"email" : "andreas.lange@xqueue.com"
}, {
"name" : "Wanadis Devs",
"email" : "dev@maileon.hu"
}
],
"require" : {
"php" : "^7.0|^8.0",
"ext-curl" : "*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml" : "*",
"ext-mbstring" : "*",
"ext-simplexml": "*"
},
"require-dev" : {
"phpunit/phpunit" : "^6.5",
"phpstan/phpstan": "^1.10"
},
"autoload" : {
"psr-4" : {
"de\\xqueue\\maileon\\api\\client\\" : "src/"
}
},
"scripts" : {
"test" : "phpunit",
"check-style" : "phpcs -p --standard=PSR2 src/",
"fix-style" : "phpcbf -p --standard=PSR2 src/"
}
}