├── .dockerignore ├── CLAUDE.md ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── ci-report-converter ├── ci-report-converter.php ├── composer.json └── src ├── Commands ├── AbstractCommand.php ├── Convert.php ├── ConvertMap.php ├── Exception.php └── TeamCityStats.php ├── Converters ├── AbstractConverter.php ├── AbstractStatsTcConverter.php ├── CheckStyleConverter.php ├── Exception.php ├── GitLabJsonConverter.php ├── GithubCliConverter.php ├── JUnitConverter.php ├── JUnitStatsTcConverter.php ├── Map.php ├── PhpDependStatsTcConverter.php ├── PhpLocStatsTcConverter.php ├── PhpMdJsonConverter.php ├── PhpMetricsStatsTcConverter.php ├── PhpMndConverter.php ├── PhpUnitCloverStatsTcConverter.php ├── PlainTextConverter.php ├── PmdCpdConverter.php ├── PsalmJsonConverter.php ├── TeamCityInspectionsConverter.php └── TeamCityTestsConverter.php ├── Exception.php ├── Formats ├── AbstractNode.php ├── Exception.php ├── GitLabJson │ ├── GitLabJson.php │ └── GitLabJsonCase.php ├── GithubActions │ ├── GithubActions.php │ ├── GithubCase.php │ └── GithubSuite.php ├── JUnit │ ├── CaseOutput │ │ ├── AbstractOutput.php │ │ ├── Error.php │ │ ├── Failure.php │ │ ├── Skipped.php │ │ ├── SystemOut.php │ │ └── Warning.php │ ├── Exception.php │ ├── JUnit.php │ ├── JUnitCase.php │ └── JUnitSuite.php ├── Metric │ ├── Metric.php │ └── Metrics.php ├── MetricMaps │ ├── AbstractMetricMap.php │ ├── JUnit.php │ ├── PhpDepend.php │ ├── PhpLoc.php │ ├── PhpMetrics.php │ └── PhpUnitClover.php ├── PlainText │ ├── PlainTable.php │ ├── PlainText.php │ ├── PlainTextCase.php │ └── PlainTextSuite.php ├── Source │ ├── Exception.php │ ├── FileRef.php │ ├── SourceCase.php │ ├── SourceCaseOutput.php │ └── SourceSuite.php ├── TeamCity │ ├── Exception.php │ ├── Helper.php │ ├── TeamCity.php │ └── Writers │ │ ├── AbstractWriter.php │ │ ├── Buffer.php │ │ ├── CustomCallback.php │ │ ├── Exception.php │ │ ├── Stdout.php │ │ └── SymfonyConsole.php └── Xml.php └── Helper.php /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/.dockerignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/action.yml -------------------------------------------------------------------------------- /ci-report-converter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/ci-report-converter -------------------------------------------------------------------------------- /ci-report-converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/ci-report-converter.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/composer.json -------------------------------------------------------------------------------- /src/Commands/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Commands/AbstractCommand.php -------------------------------------------------------------------------------- /src/Commands/Convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Commands/Convert.php -------------------------------------------------------------------------------- /src/Commands/ConvertMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Commands/ConvertMap.php -------------------------------------------------------------------------------- /src/Commands/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Commands/Exception.php -------------------------------------------------------------------------------- /src/Commands/TeamCityStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Commands/TeamCityStats.php -------------------------------------------------------------------------------- /src/Converters/AbstractConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/AbstractConverter.php -------------------------------------------------------------------------------- /src/Converters/AbstractStatsTcConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/AbstractStatsTcConverter.php -------------------------------------------------------------------------------- /src/Converters/CheckStyleConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/CheckStyleConverter.php -------------------------------------------------------------------------------- /src/Converters/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/Exception.php -------------------------------------------------------------------------------- /src/Converters/GitLabJsonConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/GitLabJsonConverter.php -------------------------------------------------------------------------------- /src/Converters/GithubCliConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/GithubCliConverter.php -------------------------------------------------------------------------------- /src/Converters/JUnitConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/JUnitConverter.php -------------------------------------------------------------------------------- /src/Converters/JUnitStatsTcConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/JUnitStatsTcConverter.php -------------------------------------------------------------------------------- /src/Converters/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/Map.php -------------------------------------------------------------------------------- /src/Converters/PhpDependStatsTcConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/PhpDependStatsTcConverter.php -------------------------------------------------------------------------------- /src/Converters/PhpLocStatsTcConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/PhpLocStatsTcConverter.php -------------------------------------------------------------------------------- /src/Converters/PhpMdJsonConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/PhpMdJsonConverter.php -------------------------------------------------------------------------------- /src/Converters/PhpMetricsStatsTcConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/PhpMetricsStatsTcConverter.php -------------------------------------------------------------------------------- /src/Converters/PhpMndConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/PhpMndConverter.php -------------------------------------------------------------------------------- /src/Converters/PhpUnitCloverStatsTcConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/PhpUnitCloverStatsTcConverter.php -------------------------------------------------------------------------------- /src/Converters/PlainTextConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/PlainTextConverter.php -------------------------------------------------------------------------------- /src/Converters/PmdCpdConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/PmdCpdConverter.php -------------------------------------------------------------------------------- /src/Converters/PsalmJsonConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/PsalmJsonConverter.php -------------------------------------------------------------------------------- /src/Converters/TeamCityInspectionsConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/TeamCityInspectionsConverter.php -------------------------------------------------------------------------------- /src/Converters/TeamCityTestsConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Converters/TeamCityTestsConverter.php -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/Formats/AbstractNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/AbstractNode.php -------------------------------------------------------------------------------- /src/Formats/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/Exception.php -------------------------------------------------------------------------------- /src/Formats/GitLabJson/GitLabJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/GitLabJson/GitLabJson.php -------------------------------------------------------------------------------- /src/Formats/GitLabJson/GitLabJsonCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/GitLabJson/GitLabJsonCase.php -------------------------------------------------------------------------------- /src/Formats/GithubActions/GithubActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/GithubActions/GithubActions.php -------------------------------------------------------------------------------- /src/Formats/GithubActions/GithubCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/GithubActions/GithubCase.php -------------------------------------------------------------------------------- /src/Formats/GithubActions/GithubSuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/GithubActions/GithubSuite.php -------------------------------------------------------------------------------- /src/Formats/JUnit/CaseOutput/AbstractOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/CaseOutput/AbstractOutput.php -------------------------------------------------------------------------------- /src/Formats/JUnit/CaseOutput/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/CaseOutput/Error.php -------------------------------------------------------------------------------- /src/Formats/JUnit/CaseOutput/Failure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/CaseOutput/Failure.php -------------------------------------------------------------------------------- /src/Formats/JUnit/CaseOutput/Skipped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/CaseOutput/Skipped.php -------------------------------------------------------------------------------- /src/Formats/JUnit/CaseOutput/SystemOut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/CaseOutput/SystemOut.php -------------------------------------------------------------------------------- /src/Formats/JUnit/CaseOutput/Warning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/CaseOutput/Warning.php -------------------------------------------------------------------------------- /src/Formats/JUnit/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/Exception.php -------------------------------------------------------------------------------- /src/Formats/JUnit/JUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/JUnit.php -------------------------------------------------------------------------------- /src/Formats/JUnit/JUnitCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/JUnitCase.php -------------------------------------------------------------------------------- /src/Formats/JUnit/JUnitSuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/JUnit/JUnitSuite.php -------------------------------------------------------------------------------- /src/Formats/Metric/Metric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/Metric/Metric.php -------------------------------------------------------------------------------- /src/Formats/Metric/Metrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/Metric/Metrics.php -------------------------------------------------------------------------------- /src/Formats/MetricMaps/AbstractMetricMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/MetricMaps/AbstractMetricMap.php -------------------------------------------------------------------------------- /src/Formats/MetricMaps/JUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/MetricMaps/JUnit.php -------------------------------------------------------------------------------- /src/Formats/MetricMaps/PhpDepend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/MetricMaps/PhpDepend.php -------------------------------------------------------------------------------- /src/Formats/MetricMaps/PhpLoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/MetricMaps/PhpLoc.php -------------------------------------------------------------------------------- /src/Formats/MetricMaps/PhpMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/MetricMaps/PhpMetrics.php -------------------------------------------------------------------------------- /src/Formats/MetricMaps/PhpUnitClover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/MetricMaps/PhpUnitClover.php -------------------------------------------------------------------------------- /src/Formats/PlainText/PlainTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/PlainText/PlainTable.php -------------------------------------------------------------------------------- /src/Formats/PlainText/PlainText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/PlainText/PlainText.php -------------------------------------------------------------------------------- /src/Formats/PlainText/PlainTextCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/PlainText/PlainTextCase.php -------------------------------------------------------------------------------- /src/Formats/PlainText/PlainTextSuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/PlainText/PlainTextSuite.php -------------------------------------------------------------------------------- /src/Formats/Source/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/Source/Exception.php -------------------------------------------------------------------------------- /src/Formats/Source/FileRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/Source/FileRef.php -------------------------------------------------------------------------------- /src/Formats/Source/SourceCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/Source/SourceCase.php -------------------------------------------------------------------------------- /src/Formats/Source/SourceCaseOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/Source/SourceCaseOutput.php -------------------------------------------------------------------------------- /src/Formats/Source/SourceSuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/Source/SourceSuite.php -------------------------------------------------------------------------------- /src/Formats/TeamCity/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/TeamCity/Exception.php -------------------------------------------------------------------------------- /src/Formats/TeamCity/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/TeamCity/Helper.php -------------------------------------------------------------------------------- /src/Formats/TeamCity/TeamCity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/TeamCity/TeamCity.php -------------------------------------------------------------------------------- /src/Formats/TeamCity/Writers/AbstractWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/TeamCity/Writers/AbstractWriter.php -------------------------------------------------------------------------------- /src/Formats/TeamCity/Writers/Buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/TeamCity/Writers/Buffer.php -------------------------------------------------------------------------------- /src/Formats/TeamCity/Writers/CustomCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/TeamCity/Writers/CustomCallback.php -------------------------------------------------------------------------------- /src/Formats/TeamCity/Writers/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/TeamCity/Writers/Exception.php -------------------------------------------------------------------------------- /src/Formats/TeamCity/Writers/Stdout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/TeamCity/Writers/Stdout.php -------------------------------------------------------------------------------- /src/Formats/TeamCity/Writers/SymfonyConsole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/TeamCity/Writers/SymfonyConsole.php -------------------------------------------------------------------------------- /src/Formats/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Formats/Xml.php -------------------------------------------------------------------------------- /src/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBZoo/CI-Report-Converter/HEAD/src/Helper.php --------------------------------------------------------------------------------