-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 1.21 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
{
"name": "sas/shortcode",
"description": "Use Wordpress like Shortcodes within the Text Editor of Shopware",
"type": "shopware-platform-plugin",
"license": "MIT",
"version": "1.0.3",
"keywords": ["shortcode", "shopware"],
"authors":[
{
"name":"Shape & Shift",
"role":"Manufacturer",
"homepage":"https://shapeandshift.dev"
}
],
"autoload": {
"psr-4": {
"SasShortcode\\": "src/"
}
},
"require": {
"shopware/core": "~6.4.0"
},
"extra": {
"shopware-plugin-class": "SasShortcode\\SasShortcode",
"label": {
"de-DE": "Shortcodes",
"en-GB": "Shortcodes"
},
"description": {
"de-DE": "Nutze ahenlich wie bei Wordpress Shortcodes im Text Editor von Shopware",
"en-GB": "Use Wordpress like Shortcodes within the Text Editor of Shopware"
},
"manufacturerLink": {
"en-GB": "https://shapeandshift.dev",
"de-DE": "https://shapeandshift.dev"
},
"supportLink": {
"de-DE": "https://shapeandshift.dev",
"en-GB": "https://shapeandshift.dev"
}
}
}