gitextract_sf71blct/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── compile.yml │ ├── integration-tests/ │ │ ├── etc/ │ │ │ ├── install-config-mysql.php │ │ │ └── mysql-client-config.php │ │ ├── phpunit10.xml │ │ └── phpunit9.xml │ ├── integration-tests.yml │ ├── static-tests.yml │ └── unit-tests.yml ├── .gitignore ├── .magento/ │ └── dev/ │ └── tests/ │ ├── integration/ │ │ ├── etc/ │ │ │ └── install-config-mysql.phps │ │ └── phpunit.xml │ └── unit/ │ └── phpunit.xml ├── .module.ini ├── CHANGELOG.md ├── Config/ │ ├── Config.php │ └── Frontend/ │ └── Funding.php ├── Controller/ │ └── Test/ │ ├── Images.php │ └── Mail.php ├── Convertor/ │ ├── ConvertWrapper.php │ └── Convertor.php ├── Exception/ │ └── InvalidConvertorException.php ├── LICENSE.txt ├── Model/ │ └── Config/ │ └── Source/ │ └── Encoding.php ├── Plugin/ │ └── AddCspInlineScripts.php ├── README.md ├── Setup/ │ └── UpgradeData.php ├── Test/ │ ├── Integration/ │ │ ├── Common.php │ │ ├── ImageConversionTest.php │ │ ├── ImageWithCustomStyleTest.php │ │ ├── ModuleTest.php │ │ ├── MultipleImagesSameTest.php │ │ └── MultipleImagesTest.php │ ├── Unit/ │ │ ├── Config/ │ │ │ └── ConfigTest.php │ │ └── Convertor/ │ │ └── ConvertorTest.php │ └── Utils/ │ ├── ConvertWrapperStub.php │ └── ImageProvider.php ├── composer.json ├── etc/ │ ├── acl.xml │ ├── adminhtml/ │ │ └── system.xml │ ├── config.xml │ ├── di.xml │ ├── frontend/ │ │ ├── di.xml │ │ └── routes.xml │ └── module.xml ├── phpstan.neon ├── registration.php └── view/ ├── adminhtml/ │ └── templates/ │ └── funding.phtml └── frontend/ ├── layout/ │ ├── hyva_catalog_category_view.xml │ ├── hyva_catalog_product_view.xml │ ├── hyva_default.xml │ ├── webp_test_images_image_with_custom_style.xml │ ├── webp_test_images_multiple_existing_picturesets.xml │ ├── webp_test_images_multiple_images.xml │ ├── webp_test_images_multiple_images_same.xml │ └── webp_test_images_unknown_image.xml ├── requirejs-config.js ├── templates/ │ ├── hyva/ │ │ ├── add-webp-class-to-body.phtml │ │ └── gallery-additions.phtml │ └── test/ │ ├── image_with_custom_style.phtml │ ├── multiple_existing_picturesets.phtml │ ├── multiple_images.phtml │ ├── multiple_images_same.phtml │ └── unknown_image.phtml └── web/ └── js/ ├── add-webp-class-to-body.js ├── gallery-mixin.js ├── has-webp.js └── swatch-renderer-mixin.js