{"id":15014448,"url":"https://github.com/facile-it/paraunit","last_synced_at":"2025-05-15T13:04:21.866Z","repository":{"id":1076463,"uuid":"39000107","full_name":"facile-it/paraunit","owner":"facile-it","description":"Run PHPUnit tests in parallel","archived":false,"fork":false,"pushed_at":"2025-04-04T06:58:53.000Z","size":4036,"stargazers_count":142,"open_issues_count":20,"forks_count":16,"subscribers_count":31,"default_branch":"2.x","last_synced_at":"2025-04-07T16:11:17.051Z","etag":null,"topics":["hacktoberfest","phar","php","phpunit","symfony","symfony-application","testing-tools"],"latest_commit_sha":null,"homepage":"https://engineering.facile.it/paraunit/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/facile-it.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG-0.x.md","contributing":"CONTRIBUTING.md","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":"2015-07-13T08:24:01.000Z","updated_at":"2025-04-04T06:58:49.000Z","dependencies_parsed_at":"2023-12-11T12:55:43.827Z","dependency_job_id":"8e209bd8-7aed-43df-a839-c1d41e8268ad","html_url":"https://github.com/facile-it/paraunit","commit_stats":{"total_commits":1379,"total_committers":21,"mean_commits":65.66666666666667,"dds":"0.13850616388687453","last_synced_commit":"f60b6e6f433f4c503a5c371befde82597fa713b2"},"previous_names":[],"tags_count":59,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facile-it%2Fparaunit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facile-it%2Fparaunit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facile-it%2Fparaunit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facile-it%2Fparaunit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/facile-it","download_url":"https://codeload.github.com/facile-it/paraunit/tar.gz/refs/heads/2.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248961186,"owners_count":21189991,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["hacktoberfest","phar","php","phpunit","symfony","symfony-application","testing-tools"],"created_at":"2024-09-24T19:45:38.798Z","updated_at":"2025-04-14T20:56:44.749Z","avatar_url":"https://github.com/facile-it.png","language":"PHP","readme":"# facile-it/paraunit\n\n![PHP Version](https://img.shields.io/badge/php-%5E7.0%7C%5E8.1-blue)\n[![Stable release][Last stable image]][Packagist link]\n[![Unstable release][Last unstable image]][Packagist link]\n\n[![Build status](https://img.shields.io/github/actions/workflow/status/facile-it/paraunit/tests.yaml?branch=2.x)](https://github.com/facile-it/paraunit/actions)\n[![Coverage Status][Master coverage image]][Master coverage link]\n\nParaunit is a tool for faster executions of PHPUnit test suites. It makes this possible by launching multiple test in parallel with single PHPUnit processes.\n\nParaunit is developed using Symfony components.\n\n## Installation\nTo use this package, use Composer:\n\n * from CLI: `composer require --dev facile-it/paraunit`\n * or, directly in your `composer.json`:\n\n```json\n{\n    \"require-dev\": {\n        \"facile-it/paraunit\": \"^2.0\"\n    }\n}\n```\n\n### Compatibility\nYou can use Paraunit with many versions of PHPUnit or Symfony, following this compatibility list:\n\n| Paraunit version | Compatible PHPUnit Version | Compatible Symfony Version |\n|------------------|----------------------------|----------------------------|\n| 2.5              | 10.5.4+, 11+, 12+          | 4.4, 5, 6, 7               |\n| 2.3              | 10.5.4+, 11+               | 4.4, 5, 6, 7               |\n| 2.0              | 10+                        | 4.4, 5, 6, 7               |\n| 1.3              | 9.3+                       | 4.4, 5, 6                  |\n| 1.2              | 9.3+                       | 3.4, 4, 5                  |\n| 1.1              | 9.1, 9.2                   | 3.4, 4, 5                  |\n| 1.0.*            | 7, 8                       | 3.4, 4, 5                  |\n| 0.12.*           | 6, 7                       | 2.8, 3, 4                  |\n\n## Usage\nParaunit starts as a Symfony console command, but it's provided through a bin launcher; you can run it like this:\u003cbr/\u003e\n(assuming your Composer's bin dir is `vendor/bin`)\n```\nvendor/bin/paraunit run\n```\nThis command will launch all the tests in all your configured testsuites.\n\n### Collect test coverage\nParaunit is also able to **collect the test coverage in parallel**, like this:\n```\nvendor/bin/paraunit coverage --html=./dir\n```\n\nIt **automatically uses the best coverage driver available**: it tries to use [Pcov](https://github.com/krakjoe/pcov) if available (since it's the fastest), otherwise it uses [Xdebug](https://xdebug.org/). If neither are available, it should always be able to use [PHPDbg](https://www.php.net/manual/en/book.phpdbg.php), which is bundled in PHP core, so it should be always present. It can produce coverage in the same formats that PHPUnit provides: HTML, Clover, Cobertura, XML, Crap4j, PHP, text file and text to console.\n\n## Documentation\nFor more details about Paraunit and its usage, see the [documentation](https://engineering.facile.it/paraunit/documentation/)\n\n[Last stable image]: https://poser.pugx.org/facile-it/paraunit/version.svg\n[Last unstable image]: https://poser.pugx.org/facile-it/paraunit/v/unstable.svg\n[Master coverage image]: https://codecov.io/gh/facile-it/paraunit/branch/master/graph/badge.svg\n\n[Packagist link]: https://packagist.org/packages/facile-it/paraunit\n[Master coverage link]: https://codecov.io/gh/facile-it/paraunit\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffacile-it%2Fparaunit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffacile-it%2Fparaunit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffacile-it%2Fparaunit/lists"}