-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 2.07 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 2.07 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
{
"name": "frosh/flow-builder-insights",
"description": "Extends the Shopware 6 Flow Builder with history and error tracking",
"license": "MIT",
"type": "shopware-platform-plugin",
"version": "1.0.0",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.com"
}
],
"require": {
"shopware/administration": "~6.7.0",
"shopware/core": "~6.7.0"
},
"autoload": {
"psr-4": {
"Frosh\\FlowBuilderInsights\\": "src/"
}
},
"extra": {
"description": {
"de-DE": "Erweitert den Shopware 6 Flow Builder um eine Historie und Fehler-Tracking. Jede Flow-Ausführung wird protokolliert, die Fehler-Details sind in der Flow-Detailseite sichtbar.",
"en-GB": "Extends the Shopware 6 Flow Builder with history and error tracking. Every flow run is logged, failed flows store exception details on the flow detail page."
},
"label": {
"de-DE": "Flow Builder Insights",
"en-GB": "Flow Builder Insights"
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshFlowBuilderInsights",
"en-GB": "https://github.com/FriendsOfShopware/FroshFlowBuilderInsights"
},
"shopware-plugin-class": "Frosh\\FlowBuilderInsights\\FroshFlowBuilderInsights",
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshFlowBuilderInsights/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshFlowBuilderInsights/issues"
}
},
"scripts": {
"check": [
"docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension validate --check-against lowest --full /ext",
"docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension validate --check-against highest --full /ext"
],
"format": "docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension format /ext"
},
"require-dev": {
"frosh/tools": "^3.0"
}
}