-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 2.31 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "netresearch/postdirekt-addressfactory",
"description": "Deutsche Post Direkt Addressfactory Integration for Shopware6",
"type": "shopware-platform-plugin",
"version": "2.4.0",
"license": "MIT",
"config": {
"platform": {
"php": "8.2",
"ext-soap": "1"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"bamarni/composer-bin-plugin": true
}
},
"autoload": {
"psr-4": {
"PostDirekt\\Addressfactory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PostDirekt\\Addressfactory\\Test\\": "test/"
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"shopware/core": "~6.6.0",
"shopware/administration": "~6.6.0",
"deutschepost/sdk-api-addressfactory": "^2.1",
"php-http/curl-client": "^2.2.0",
"nyholm/psr7": "^1.2.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4"
},
"authors": [
{
"email": "[email protected]",
"name": "Netresearch DTT GmbH",
"role": "Manufacturer",
"homepage": "https://www.netresearch.de/"
}
],
"extra": {
"shopware-plugin-class": "PostDirekt\\Addressfactory\\NRLEJPostDirektAddressfactory",
"copyright": "(c) Deutsche Post Direkt",
"label": {
"de-DE": "Deutsche Post Direkt Addressfactory",
"en-GB": "Deutsche Post Direkt Addressfactory"
},
"description": {
"de-DE": "Der Service ADDRESSFACTORY DIRECT ermöglicht Ihnen, deutsche Versandadressen zu validieren, zu korrigieren und die Wahrscheinlichkeit einer erfolgreichen Lieferung abzuschätzen.",
"en-GB": "The ADDRESSFACTORY DIRECT service enables you to check delivery addresses in Germany, correct them regarding spelling and plausability and estimate the delivery success."
},
"manufacturerLink": {
"de-DE": "https://www.netresearch.de/",
"en-GB": "https://www.netresearch.de/en/"
},
"supportLink": {
"de-DE": "https://postdirekt.support.netresearch.de/support/home",
"en-GB": "https://postdirekt.support.netresearch.de/support/home"
}
}
}