{"id":15008330,"url":"https://github.com/ixnode/php-phpunit-printer","last_synced_at":"2026-04-06T03:31:44.165Z","repository":{"id":65702609,"uuid":"597541819","full_name":"ixnode/php-phpunit-printer","owner":"ixnode","description":"Overwrites the PHPUnit Printer with formatted output.","archived":false,"fork":false,"pushed_at":"2023-03-04T00:11:58.000Z","size":88,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-30T08:41:59.157Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ixnode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-04T21:26:00.000Z","updated_at":"2023-03-03T23:00:31.000Z","dependencies_parsed_at":"2024-10-12T08:41:02.272Z","dependency_job_id":"2057d03a-c3f6-4f4d-8bd0-bf99f5a04bc8","html_url":"https://github.com/ixnode/php-phpunit-printer","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"cd406d6b1148a55e0de87aca8cc4fd532080a3a2"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ixnode/php-phpunit-printer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ixnode%2Fphp-phpunit-printer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ixnode%2Fphp-phpunit-printer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ixnode%2Fphp-phpunit-printer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ixnode%2Fphp-phpunit-printer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ixnode","download_url":"https://codeload.github.com/ixnode/php-phpunit-printer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ixnode%2Fphp-phpunit-printer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31458837,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-24T19:17:39.319Z","updated_at":"2026-04-06T03:31:44.141Z","avatar_url":"https://github.com/ixnode.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PHP Container\n\n[![Release](https://img.shields.io/github/v/release/ixnode/php-phpunit-printer)](https://github.com/ixnode/php-phpunit-printer/releases)\n[![PHP](https://img.shields.io/badge/PHP-^8.0-777bb3.svg?logo=php\u0026logoColor=white\u0026labelColor=555555\u0026style=flat)](https://www.php.net/supported-versions.php)\n[![PHPStan](https://img.shields.io/badge/PHPStan-Level%20Max-brightgreen.svg?style=flat)](https://phpstan.org/user-guide/rule-levels)\n[![PHPCS](https://img.shields.io/badge/PHPCS-PSR12-brightgreen.svg?style=flat)](https://www.php-fig.org/psr/psr-12/)\n[![LICENSE](https://img.shields.io/github/license/ixnode/php-phpunit-printer)](https://github.com/ixnode/php-phpunit-printer/blob/master/LICENSE)\n\n\u003e Overwrites the PHPUnit Printer with formatted output.\n\n## 1) Installation\n\n```bash\ncomposer require --dev ixnode/php-phpunit-printer\n```\n\n```bash\nvendor/bin/php-phpunit-printer -V\n```\n\n```bash\nphp-phpunit-printer 0.1.0 (02-04-2023 22:33:53) - Björn Hempel \u003cbjoern@hempel.li\u003e\n```\n\n## 2) Usage\n\n\u003cimg src=\"docs/images/output.png\" alt=\"PHPUnit output\" width=\"599\"/\u003e\n\nAfter installing this Composer package, you can edit your phpunit.xml as follows:\n\n```xml\n\u003cphpunit\n    ...\n    printerClass=\"Ixnode\\PhpPhpunitPrinter\\Printer\"\n\u003e\n    ...\n\u003c/phpunit\u003e\n```\n\nA complete phpunit.xml example could look like this:\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\n\u003c!-- https://phpunit.readthedocs.io/en/latest/configuration.html --\u003e\n\u003cphpunit xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:noNamespaceSchemaLocation=\"vendor/phpunit/phpunit/phpunit.xsd\"\n         backupGlobals=\"false\"\n         colors=\"true\"\n         convertDeprecationsToExceptions=\"false\"\n         stopOnFailure=\"true\"\n         printerClass=\"Ixnode\\PhpPhpunitPrinter\\TestDoxPrinter\"\n\u003e\n    \u003cphp\u003e\n        \u003cini name=\"display_errors\" value=\"1\"/\u003e\n        \u003cini name=\"error_reporting\" value=\"-1\"/\u003e\n        \u003cserver name=\"APP_ENV\" value=\"test\" force=\"true\"/\u003e\n        \u003cserver name=\"SHELL_VERBOSITY\" value=\"-1\"/\u003e\n        \u003cserver name=\"SYMFONY_PHPUNIT_REMOVE\" value=\"\"/\u003e\n        \u003cserver name=\"SYMFONY_PHPUNIT_VERSION\" value=\"9.5\"/\u003e\n        \u003cenv name=\"SYMFONY_DEPRECATIONS_HELPER\" value=\"disabled\"/\u003e\n    \u003c/php\u003e\n\n    \u003ctestsuites\u003e\n        \u003ctestsuite name=\"PHPUnit Test Suite\"\u003e\n            \u003cdirectory\u003etests\u003c/directory\u003e\n        \u003c/testsuite\u003e\n    \u003c/testsuites\u003e\n\n    \u003ccoverage processUncoveredFiles=\"true\"\u003e\n        \u003cinclude\u003e\n        \u003c/include\u003e\n    \u003c/coverage\u003e\n\u003c/phpunit\u003e\n```\n\n## 3.) Development\n\n```bash\ngit clone git@github.com:ixnode/php-phpunit-printer.git \u0026\u0026 cd php-phpunit-printer\n```\n\n```bash\ncomposer install\n```\n\n```bash\ncomposer test\n```\n\n## 4.) License\n\nThis tool is licensed under the MIT License - see the [LICENSE](/LICENSE) file for details","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fixnode%2Fphp-phpunit-printer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fixnode%2Fphp-phpunit-printer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fixnode%2Fphp-phpunit-printer/lists"}