-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.23 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
{
"name": "sptec/lazyload",
"version": "0.2.0",
"type": "shopware-platform-plugin",
"description": "Simple integration of lazysizes into Shopware 6.",
"license": "MIT",
"authors": [
{
"name": "Stefan Poensgen",
"homepage": "https://stefanpoensgen.de"
}
],
"autoload": {
"psr-4": {
"Sptec\\Lazyload\\": "src/"
}
},
"extra": {
"shopware-plugin-class": "Sptec\\Lazyload\\SptecLazyload",
"label": {
"de-DE": "Lazyload",
"en-GB": "Lazyload"
},
"description": {
"de-DE": "Einfache Integration von Lazysizes in Shopware 6.",
"en-GB": "Simple integration of lazysizes into Shopware 6."
},
"manufacturerLink": {
"de-DE": "https://github.com/stefanpoensgen/SptecLazyload",
"en-GB": "https://github.com/stefanpoensgen/SptecLazyload"
},
"supportLink": {
"de-DE": "https://github.com/stefanpoensgen/SptecLazyload/issues",
"en-GB": "https://github.com/stefanpoensgen/SptecLazyload/issues"
}
},
"require": {
"shopware/core": "~6.4",
"shopware/storefront": "~6.4"
}
}