Converts vimeo/psalm's JSON report to a junit XML report.
Install the package in dev:
composer install --dev m50/psalm-json-to-junitFirst run psalm generating a json report:
vendor/bin/psalm --report="report.json"Then, you can run the convertor:
vendor/bin/psalm-to-junit convert:json report.json report.xmlThat will generate a new report.xml which you can use in your CI report system.