-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 3.38 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 3.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "postnl/shopware6",
"description": "PostNL",
"version": "5.0.1",
"type": "shopware-platform-plugin",
"license": "proprietary",
"authors": [
{
"name": "PostNL",
"homepage": "https://www.postnl.nl",
"role": "Manufacturer"
},
{
"name": "Memo ICT",
"homepage": "https://memo-ict.nl",
"role": "Developer"
}
],
"extra": {
"shopware-plugin-class": "PostNL\\Shopware6\\PostNLShopware",
"copyright": "(c) by PostNL",
"label": {
"de-DE": "PostNL Shipping & Labels",
"en-GB": "PostNL Shipping & Labels",
"nl-NL": "PostNL Shipping & Labels"
},
"description": {
"de-DE": "Mit dieser Erweiterung können Sie Sendungen bei PostNL registrieren und die Versandetiketten mit einem Knopfdruck drucken. Kunden können wählen, wie sie ihre Sendung erhalten.",
"en-GB": "With this extension, you can register shipments with PostNL and print the shipping labels with one push of a button. Moreover, your customers choose how they want to receive the order.",
"nl-NL": "Met deze extensie meld je eenvoudig zendingen aan bij PostNL en print je met één druk op de knop de verzendlabels. Daarnaast kiezen jouw klanten hoe zij de bestelling willen ontvangen."
},
"manufacturerLink": {
"en-GB": "https://www.postnl.nl/en/",
"de-DE": "https://www.postnl.nl/en/",
"nl-NL": "https://www.postnl.nl"
},
"supportLink": {
"en-GB": "https://www.postnl.nl/en/customer-service/",
"de-DE": "https://www.postnl.nl/en/customer-service/",
"nl-NL": "https://www.postnl.nl/klantenservice/"
}
},
"autoload": {
"psr-4": {
"PostNL\\Shopware6\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PostNL\\Shopware6\\PHPUnit\\": "tests/PHPUnit/",
"PostNL\\Shopware6\\PHPStan\\": "tests/PHPStan/"
}
},
"require": {
"composer-runtime-api": "^2.0",
"firstred/postnl-api-php": "^2.0.14",
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1",
"friendsofphp/php-cs-fixer": "^3",
"phpcompatibility/php-compatibility": "^9.3",
"squizlabs/php_codesniffer": "^3.6",
"nunomaduro/phpinsights": "^2.8",
"infection/infection": "^0.29.7",
"boxblinkracer/phpunuhi": "^1",
"shopware/core": "~6.7.0",
"shopware/administration": "*",
"shopware/storefront": "*"
},
"scripts": {
"post-install-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
],
"post-update-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
]
},
"config": {
"optimize-autoloader": true,
"prepend-autoloader": false,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"infection/extension-installer": false,
"dealerdirect/phpcodesniffer-composer-installer": false,
"php-http/discovery": true,
"symfony/runtime": true
}
}
}