yireo/magento2-extension-validation-tools

N/A

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 1

Type:magento2-module

0.0.2 2022-07-10 08:05 UTC

This package is auto-updated.

Last update: 2024-04-21 23:47:59 UTC


README

This extension validates the code of other extensions and is complementary to static code analysis tools like PHPCS.

Example 1: Comparing composer versions

bin/magento extension:validate:version_match /path/to/your/extension/composer.json

This command allows you to scan a given composer.json of some extension, without that extension being installed. This allows you to modify the dependencies of that extension, before trying to install the extension (which could save valuable time).

The output should be empty to be successful. When unmatched versions are found, it might look like the following:

ERROR: "magento/framework:103.0.0" does not match required version "^100.1|^101.0|^102.0"

Example 3: Creating unit tests (@todo: Move this to another module

bin/magento extension:validate:generate-unit-test --module Yireo_Webp2 --class '\Yireo\Webp2\Convertor\Convertor'