-
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.23 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.23 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": "xqueue/maileon-partner-api-client",
"description": "Partner API Client to XQ:Maileon",
"keywords": [
"XQueue",
"Maileon",
"Partner API"
],
"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": "XQueue GmbH, Daniel Dietz",
"email": "daniel.dietz@xqueue.com"
},
{
"name": "XQueue GmbH, Tibor Cser",
"email": "tibor.cser@xqueue.com"
}
],
"require": {
"php": "^8.1",
"cuyz/valinor": "^1.9.0",
"ext-curl": "*"
},
"require-dev": {
"orchestra/testbench": "*",
"phpunit/phpunit": "*",
"vlucas/phpdotenv": "^5.6",
"ext-zip": "*"
},
"autoload": {
"psr-4": {
"Xqueue\\MaileonPartnerApiClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Xqueue\\MaileonPartnerApiClient\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-clover build/clover.xml"
},
"config": {
"sort-packages": true
}
}