forked from FriendsOfShopware/FroshLazySizes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.84 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
{
"name": "frosh/lazy-sizes",
"keywords": [
"shopware",
"media",
"thumbnail"
],
"description": "Automatically calculate the best thumbnail size. This means you don't have to worry about the \"sizes\" attribute for the images. Additionally, you gain a score.",
"version": "2.0.0",
"type": "shopware-platform-plugin",
"license": "mit",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.de"
}
],
"require": {
"shopware/core": "~6.5.0"
},
"extra": {
"shopware-plugin-class": "Frosh\\LazySizes\\FroshLazySizes",
"label": {
"de-DE": "LazySizes und LazyLoading für passende Bilder-Sizes",
"en-GB": "LazySizes and LazyLoading for suitable image sizes"
},
"description": {
"de-DE": "Lass die beste Thumbnail-Größe automatisch berechnen. Dadurch musst du dir keine Gedanken um das Attribut \"sizes\" bei den Bildern zu machen und gewinnst an Score.",
"en-GB": "Automatically calculate the best thumbnail size. This means you don't have to worry about the \"sizes\" attribute for the images. Additionally, you gain a score."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshLazySizes",
"en-GB": "https://github.com/FriendsOfShopware/FroshLazySizes"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshLazySizes/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshLazySizes/issues"
}
},
"autoload": {
"psr-4": {
"Frosh\\LazySizes\\": "src/"
}
},
"minimum-stability": "RC",
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}