-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
66 lines (66 loc) · 2.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "frosh/platform-thumbnail-processor",
"keywords": [
"shopware",
"backend",
"admin",
"media",
"media manager",
"cdn",
"storage",
"thumbnail"
],
"description": "This plugins allows you to use variable thumbnails, without having them on storage.",
"version": "5.2.1",
"type": "shopware-platform-plugin",
"license": "mit",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.de"
}
],
"require": {
"shopware/core": "~6.6.0",
"nikic/php-parser": "^4.13.0"
},
"suggest": {
"frosh/lazy-sizes": "*"
},
"extra": {
"shopware-plugin-class": "Frosh\\ThumbnailProcessor\\FroshPlatformThumbnailProcessor",
"label": {
"de-DE": "ThumbnailProcessor mit Webp-Unterstützung",
"en-GB": "ThumbnailProcessor incl. Webp-Support"
},
"description": {
"de-DE": "Verschwende nicht Rechenleistung und Speicherplatz durch Thumbnails! Lass diese in Echtzeit beim Besuch durch einen externen Dienst erzeugen und ausliefern.",
"en-GB": "Don't waste the computing power and space with thumbnails! Have the thumbnails generated and delivered in real time when you visit an external service."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformThumbnailProcessor",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformThumbnailProcessor"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformThumbnailProcessor/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformThumbnailProcessor/issues"
}
},
"autoload": {
"psr-4": {
"Frosh\\ThumbnailProcessor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Frosh\\ThumbnailProcessor\\Tests\\Unit\\": "tests/unit",
"Frosh\\ThumbnailProcessor\\Tests\\Integration\\": "tests/integration"
}
},
"scripts": {
"create-placeholders": [
"echo \"<?php\n\ndeclare (strict_types=1);\n\nnamespace Frosh\\ThumbnailProcessor\\DependencyInjection;\n\nclass FileSaver extends \\Shopware\\Core\\Content\\Media\\File\\FileSaver\n{\n}\n\" > src/DependencyInjection/FileSaver.php",
"echo \"<?php\n\ndeclare (strict_types=1);\n\nnamespace Frosh\\ThumbnailProcessor\\DependencyInjection;\n\nclass ThumbnailService extends \\Shopware\\Core\\Content\\Media\\Thumbnail\\ThumbnailService\n{\n}\n\" > src/DependencyInjection/ThumbnailService.php"
]
}
}