-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
54 lines (54 loc) · 1.68 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
{
"name": "frosh/platform-html-minify",
"keywords": [
"shopware",
"backend",
"html",
"minify"
],
"description": "This plugin delivers minified HTML and minified inline JavaScript to visitors.",
"version": "2.1.0",
"type": "shopware-platform-plugin",
"license": "mit",
"authors": [
{
"name": "FriendsOfShopware",
"homepage": "https://friendsofshopware.de"
}
],
"require": {
"shopware/core": "~6.5.8||~6.6.0",
"mrclay/jsmin-php": "^2.4"
},
"extra": {
"shopware-plugin-class": "Frosh\\HtmlMinify\\FroshPlatformHtmlMinify",
"plugin-icon": "src/Resources/config/plugin.png",
"label": {
"de-DE": "HTML Minify plugin",
"en-GB": "HTML Minify plugin"
},
"description": {
"de-DE": "Liefere minimierte HTML-Seiten aus. Zusätzlich kombiniert und minimiert dieses Plugin die JavaScript-Tags im HTML. In den meisten Fällen können Einsparungen von 30 % gemacht werden.",
"en-GB": "Deliver minified HTML pages. In addition, this plugin combines and minimizes the JavaScript tags in the HTML. In most cases, savings of 30% can be made."
},
"manufacturerLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformHtmlMinify",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformHtmlMinify"
},
"supportLink": {
"de-DE": "https://github.com/FriendsOfShopware/FroshPlatformHtmlMinify/issues",
"en-GB": "https://github.com/FriendsOfShopware/FroshPlatformHtmlMinify/issues"
}
},
"autoload": {
"psr-4": {
"Frosh\\HtmlMinify\\": "src/"
}
},
"minimum-stability": "RC",
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}