-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 2.03 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 2.03 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
{
"name": "cleverpush/cleverpush-shopware-plugin",
"description": "Official CleverPush Shopware extension.",
"license": "proprietary",
"type": "shopware-platform-plugin",
"version": "1.0.0",
"authors": [
{
"name": "CleverPush GmbH"
}
],
"require": {
"shopware/core": "^6.6.0",
"shopware/storefront": "^6.6.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47"
},
"autoload": {
"psr-4": {
"CleverPush\\CleverPushShopware\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"symfony/runtime": true
}
},
"extra": {
"description": {
"de-DE": "Offizielles CleverPush Shopware Plugin. Erweitert Shopware um eine Integration von CleverPush mithilfe eines Service Workers. Die Channel ID kann im Adminbereich gesetzt werden.",
"en-GB": "Official CleverPush Shopware extension. Extends Shopware with an integration of CleverPush via a Service Worker. The Channel ID can be set in the Admin area."
},
"label": {
"de-DE": "CleverPush",
"en-GB": "CleverPush"
},
"manufacturerLink": {
"de-DE": "https://cleverpush.com/de/",
"en-GB": "https://cleverpush.com/en/"
},
"plugin-icon": "src/Resources/config/plugin.png",
"shopware-plugin-class": "CleverPush\\CleverPushShopware\\CleverPushShopwarePlugin",
"supportLink": {
"de-DE": "https://github.com/cleverpush/cleverpush-shopware-plugin",
"en-GB": "https://github.com/cleverpush/cleverpush-shopware-plugin"
}
},
"scripts": {
"check": "docker pull shopware/shopware-cli:latest && docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension validate --full /ext",
"format": "docker pull shopware/shopware-cli:latest && docker run --rm -v $(pwd):/ext shopware/shopware-cli:latest extension format /ext"
}
}