-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 2.08 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
{
"name": "shopgate/webcheckout-shopware6",
"description": "Shopgate Webcheckout for Shopware 6",
"license": "proprietary",
"type": "shopware-platform-plugin",
"version": "3.2.0",
"keywords": [
"mobile",
"app"
],
"authors": [
{
"name": "Apite GmbH",
"email": "[email protected]"
}
],
"require": {
"shopware/core": "^6.6.0",
"rbdwllr/reallysimplejwt": "^5.0.0",
"jakeasmith/http_build_url": "^1.0.1"
},
"extra": {
"shopware-plugin-class": "Shopgate\\WebcheckoutSW6\\SgateWebcheckoutSW6",
"plugin-icon": "src/Resources/public/shopgate_logo.png",
"copyright": "by Apite",
"label": {
"de-DE": "Shopgate Webcheckout",
"en-GB": "Shopgate Webcheckout"
},
"description": {
"de-DE": "Die Erweiterung unterstützt die Shopgate Webcheckout Lösung der aktuellsten App Generation. Sie implementiert den Austausch der Daten und Sessions zwischen der App und Shopware 6.",
"en-GB": "Shopgate Webcheckout integration for Shopware 6 is designed to support the newer App solution. This extensions helps the App maintain sessions & provide additional endpoints."
},
"manufacturerLink": {
"en-GB": "https://apite.io",
"de-DE": "https://apite.io"
},
"supportLink": {
"de-DE": "https://apite.io",
"en-GB": "https://apite.io"
}
},
"scripts": {
"init-dev-ops": [
"composer req symplify/easy-coding-standard phpstan/phpstan --dev --no-scripts --no-plugins -d ../../../"
],
"phpstan-lint": "../../../vendor/bin/phpstan analyse",
"code-style-fix": "../../../vendor/bin/ecs --fix",
"code-style-lint": "../../../vendor/bin/ecs",
"lint": [
"@phpstan-lint",
"@code-style-lint"
],
"fix": [
"@code-style-fix"
]
},
"autoload": {
"psr-4": {
"Shopgate\\WebcheckoutSW6\\": "src/"
}
}
}