m50 / psalm-json-to-junit
Converts psalm's json report to junit for CI/CD systems.
Installs: 4 553
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^7.3
- symfony/console: ^4.4
- vimeo/psalm: ^3.7
Requires (Dev)
- phpunit/phpunit: ^8.4
README
Converts vimeo/psalm's JSON report to a junit XML report.
Install
Install the package in dev:
composer install --dev m50/psalm-json-to-junit
Usage
First 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.xml
That will generate a new report.xml which you can use in your CI report system.