-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 2 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 2 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
{
"name": "etechflow/module-image-optimizer",
"description": "Server-side WebP image optimization for Magento 2. No external API, no per-image fees, no rate limits — converts JPG/PNG to WebP locally via cwebp / Imagick / GD with graceful fallback. Emits <picture> with WebP source + JPEG fallback for browser compatibility. Native loading=lazy. Bulk + cron + CLI. Profiler-instrumented. Standalone or bundled in the ETechFlow suite.",
"type": "magento2-module",
"version": "1.3.1",
"license": "proprietary",
"authors": [
{
"name": "eTechFlow Pvt. Ltd.",
"email": "info@etechflow.com",
"homepage": "https://etechflow.com"
}
],
"support": {
"email": "info@etechflow.com",
"source": "https://etechflow.com"
},
"require": {
"php": "~8.1.0||~8.2.0||~8.3.0||~8.4.0",
"magento/framework": "^103.0||^104.0",
"magento/module-backend": "^102.0||^103.0",
"magento/module-catalog": "^104.0||^105.0",
"magento/module-store": "^101.1||^102.0",
"magento/module-config": "^101.2||^102.0",
"magento/module-media-storage": "^100.4||^101.0",
"magento/module-ui": "^101.2||^102.0",
"magento/module-cron": "^100.4||^101.0"
},
"suggest": {
"ext-gd": "PHP-GD with WebP support enabled (--with-webp). Most modern hosts have it; check with `php -r 'echo function_exists(\"imagewebp\") ? \"yes\" : \"no\";'`.",
"ext-imagick": "ImageMagick PHP extension with WebP support — alternative to GD with higher conversion quality.",
"etechflow/module-next-day-eligibility": "Optional. Existing ETechFlow suite customer? Bundle key activates this module too.",
"etechflow/module-back-in-stock-notification": "Optional. Existing ETechFlow suite customer? Bundle key activates this module too."
},
"autoload": {
"psr-4": {
"ETechFlow\\ImageOptimizer\\": ""
},
"files": [
"registration.php"
]
}
}