Extension Verifier is an own self-contained tool to check, format and refactor extensions (Plugins / Apps) or a complete project. The Verifier uses various tools to perform the checks and combine the result into one unified output.
Following tools are included with the Verifier:
- ESlint
- PHPStan
- Rector
- Stylelint
- PHP-CS-Fixer
All of these tools are pre-configured if no config was provided.
The Extension Verifier is only available as Docker Image as it contains all Tools pre-installed with correct dependencies. So it can be used with a single Docker command:
docker run --rm ghcr.io/shopwarelabs/extension-verifier:latest
Note
The tag latest points always to the most recent version, you may want to pin the Docker Image to a specific version and update it from time to time.
Additionally, we provide a ready to use GitHub Action:
jobs:
check:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
version-selection: [ 'lowest', 'highest']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check extension
uses: shopware/github-actions/extension-verifier@main
with:
action: check
check-against: ${{ matrix.version-selection }}
To run the formatter, you can use following command:
docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest format /ext
You can run it also in dry mode, just show the changes instead of editing the files
docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest format /ext --dry-run
By default, the formatting is done by Shopware Coding Standard. You can configure the formatting by creating a .php-cs-fixer.dist.php
in your extension root.
To run the checks, you can use following command:
docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest check /ext
It will check by default to the latest allowed Shopware version by your constraints in composer.json
. It's recommended to run the check against the lowest and highest allowed version, so you can be sure that your extension is compatible with all versions. You can do this by using the --check-against
option:
docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest check /ext --check-against lowest
docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest check /ext --check-against highest
The check command has multiple reporting options, you can use --reporter
to specify the output format. The following formats are supported:
summary
- default list of all errors and warningsjson
- json outputjunit
- junit outputgithub
- GitHub Actions outputmarkdown
- markdown output
Instead of running all tools, you can choose to run specific tools using the --only
flag. The following tools are available:
phpstan
- PHP static analysissw-cli
- Shopware CLI validation checksstylelint
- CSS/SCSS lintingadmin-twig
- Admin Twig template checksphp-cs-fixer
- PHP code style fixingprettier
- Code formattingeslint
- JavaScript/TypeScript lintingrector
- PHP code refactoring
You can run a single tool:
docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest check /ext --only phpstan
Or run multiple tools by separating them with commas:
docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest check /ext --only "phpstan,eslint,stylelint"
This is particularly useful when:
- You want to focus on specific aspects of your code
- You want to run only the relevant tools for the files you've changed
- You want to fix issues one tool at a time
To run the refactoring, you can use following command:
Warning
Make sure you have a copy of your extension before running the command, as it will change your files!
docker run --rm -v $(pwd):/ext ghcr.io/shopwarelabs/extension-verifier:latest fix /ext
This will execute Rector and ESLint to refactor your code. You should review the changes made and decide if you want to keep them or not.
In case you want to ignore errors or warnings, you can create a .shopware-extension.yaml
file in your extension root with the following content:
validation:
ignore:
# Ignore all errors by identifier
- identifier: 'Shopware.XXXXXX'
# Ignore all errors by identifier and path
- identifier: 'Shopware.XXXXXX'
path: 'path/to/file.php'
# Ignore all errors by message and path
- message: 'Some error message'
path: 'path/to/file.php'
# Ignore all errors by message
- message: 'Some error message'
It's possible to scan an entire project instead just a single extension. This is useful if you want to check all extensions in your project at once. You can do this by passing a path to the project root instead of the extension path.
All config files like phpstan.neon
, and .php-cs-fixer.dist.php
should be placed in the project root for proper configuration for overriding the default settings. The Verifier will automatically detect the config files and use them for the checks.
Ignoring errors works similar to extensions, in that case you can create a .shopware-project.yaml
file in your project root with the same syntax.
The fixers are enabled by the supported Shopware Version by the constraint in the composer.json
in the plugin. For 6.7, you should change the composer constraint to this:
{
"minimum-stability": "dev",
"require": {
"shopware/core": "~6.7.0"
}
}
Your plugin typically requires only shopware/core
, but when you use classes from Storefront or Elasticsearch Bundle and they are required, you have to add shopware/storefront
or shopware/elasticsearch
also to the require
in the composer.json. If those features are optional with class_exists
checks, you want to add them into require-dev
, so the dependencies are installed only for development, and PHPStan can recognize the files.
To run this tool locally you need PHP, Node, NPM and Go.
composer install -d tools/php
npm install --prefix tools/js
go run . <the command you wanna run>