-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 2.33 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-autocomplete",
"description": "Deutsche Post Direkt Autocomplete Integration for Shopware6",
"type": "shopware-platform-plugin",
"version": "1.5.0",
"license": "MIT",
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"bamarni/composer-bin-plugin": true
}
},
"autoload": {
"psr-4": {
"PostDirekt\\Autocomplete\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PostDirekt\\Autocomplete\\Test\\": "test/"
}
},
"require": {
"php": "^8.2",
"shopware/storefront": "~6.6.0",
"shopware/core": "~6.6.0",
"deutschepost/sdk-api-autocomplete-authentication": "^1.2.0",
"php-http/curl-client": "^2.2.0",
"slim/psr7": "^1.4.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"fig/log-test": "^1.1",
"phpunit/phpunit": "*"
},
"authors": [
{
"email": "plugins@netresearch.de",
"name": "Netresearch DTT GmbH",
"role": "Manufacturer",
"homepage": "https://www.netresearch.de/"
}
],
"extra": {
"shopware-plugin-class": "PostDirekt\\Autocomplete\\NRLEJPostDirektAutocomplete",
"copyright": "(c) Deutsche Post Direkt",
"label": {
"de-DE": "Deutsche Post Direkt Autocomplete",
"en-GB": "Deutsche Post Direkt Autocomplete"
},
"description": {
"de-DE": "Der Service DATAFACTORY AUTOCOMPLETE der Deutsche Post Direkt unterstützt die Adresseingabe in Ihrem Shop mit Vorschlägen postalisch korrekter Daten durch Original-Postleitdaten",
"en-GB": "The DATAFACTORY AUTOCOMPLETE service of Deutsche Post Direkt supports the address entry in your shop with suggestions for correct postal data based on the original postal routing data"
},
"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"
}
}
}