-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.11 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.11 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
{
"name": "brocode/module-image-optimizer",
"version": "1.1.0",
"license": ["MIT"],
"authors": [
{
"name": "Benjamin Rosenberger",
"email": "bensch.rosenberger@gmail.com"
}
],
"description": "Magento2 Module to search for certain specified image files for conversion to other formats",
"type": "magento2-module",
"require": {
"magento/framework": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"BroCode\\ImageOptimizer\\": ""
}
},
"suggest": {
"brocode/module-image-optimizer-webp": "Adds the possibility to convert images to WEBP format",
"brocode/module-image-optimizer-avif": "Adds the possibility to convert images to AVIF format",
"brocode/module-image-optimizer-queue": "Adds the possibility to optimize images asynchronously with the internal Mysql queue",
"brocode/module-image-optimizer-amqp": "Adds the possibility to optimize images asynchronously with the internal Amqp (RabittMQ) queue"
},
"funding": [
{
"type": "By me a coffee",
"url": "https://www.buymeacoffee.com/brosenberger"
}
]
}