yireo / magento2-extension-validation-tools
N/A
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Type:magento2-module
Requires
- magento/framework: *
- yireo/magento2-extensionchecker: *
This package is auto-updated.
Last update: 2024-10-22 01:15:41 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'