-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.61 KB
/
Copy pathcomposer.json
File metadata and controls
81 lines (81 loc) · 2.61 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "netlogix/nlx-sw-imgproxy",
"description": "Plugin to allow shopware to authenticate and support image proxy",
"license": "MIT",
"type": "shopware-platform-plugin",
"version": "2.2.0",
"authors": [
{
"name": "netlogix GmbH & Co. KG"
}
],
"require": {
"php": ">=8.2",
"shopware/core": "~6.7.1",
"shopware/storefront": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47",
"netlogix/coding-guidelines-php": "^1.0",
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.1",
"shopwarelabs/phpstan-shopware": "^0.1.14"
},
"autoload": {
"psr-4": {
"Netlogix\\NlxSwImgproxy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Netlogix\\NlxSwImgproxy\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"symfony/runtime": true,
"php-http/discovery": true
},
"audit": {
"block-insecure": false
}
},
"extra": {
"description": {
"de-DE": "Dieses Plugin fügt Shopware Support für ImgProxy hinzu. Damit ermöglicht es schnelle serverseitige Resize- und Crop-Transformationen, WebP/AVIF-Ausgabe und signierte Urls.",
"en-GB": "This plugin adds ImgProxy support to Shopware. It enables fast server-side resize and crop transformations, WebP/AVIF output, signed URLs, and reduced storage"
},
"label": {
"de-DE": "imgproxy Unterstützung",
"en-GB": "imgproxy support"
},
"manufacturerLink": {
"de-DE": "https://www.netlogix.de",
"en-GB": "https://www.netlogix.de"
},
"shopware-plugin-class": "Netlogix\\NlxSwImgproxy\\NlxSwImgproxy",
"supportLink": {
"de-DE": "https://www.netlogix.de",
"en-GB": "https://www.netlogix.de"
}
},
"scripts": {
"composer:normalize": "@composer normalize --no-check-lock --dry-run",
"composer:normalize:fix": "@composer normalize --no-check-lock",
"ecs": "ecs check",
"ecs:fix": "ecs check --fix",
"lint:fix": [
"@composer:normalize:fix",
"@rector:fix",
"@ecs:fix"
],
"phpstan": "vendor/bin/phpstan",
"rector": "vendor/bin/rector process --dry-run",
"rector:fix": "vendor/bin/rector process",
"test": [
"@test:unit"
],
"test:unit": "vendor/bin/phpunit --testdox --testsuite unit"
}
}