{"id":21966669,"url":"https://github.com/devinweb/laravel-test-parallel","last_synced_at":"2025-10-11T21:41:29.579Z","repository":{"id":42637097,"uuid":"342560240","full_name":"devinweb/laravel-test-parallel","owner":"devinweb","description":" a command to run your tests simultaneously across multiple processes to significantly reduce the time required to run the entire test suite.","archived":false,"fork":false,"pushed_at":"2023-04-19T20:31:30.000Z","size":117,"stargazers_count":8,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-26T19:06:28.541Z","etag":null,"topics":["devinweb","laravel","parallel","tests"],"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/devinweb.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null}},"created_at":"2021-02-26T11:50:05.000Z","updated_at":"2024-03-21T21:02:38.000Z","dependencies_parsed_at":"2025-04-24T05:10:25.563Z","dependency_job_id":"a29d4951-e425-45b8-8665-9b7ae1f05050","html_url":"https://github.com/devinweb/laravel-test-parallel","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/devinweb/laravel-test-parallel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinweb%2Flaravel-test-parallel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinweb%2Flaravel-test-parallel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinweb%2Flaravel-test-parallel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinweb%2Flaravel-test-parallel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devinweb","download_url":"https://codeload.github.com/devinweb/laravel-test-parallel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devinweb%2Flaravel-test-parallel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279008836,"owners_count":26084517,"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","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"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":["devinweb","laravel","parallel","tests"],"created_at":"2024-11-29T13:17:40.932Z","updated_at":"2025-10-11T21:41:29.544Z","avatar_url":"https://github.com/devinweb.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel parallel tests\n\n\u003ca href=\"https://github.styleci.io/repos/342560240\"\u003e\u003cimg src=\"https://github.styleci.io/repos/342560240/shield?branch=master\" alt=\"StyleCI Shield\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/devinweb/laravel-test-parallel\"\u003e\u003cimg src=\"https://img.shields.io/packagist/dt/devinweb/laravel-test-parallel.svg?style=flat-square\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/devinweb/laravel-test-parallel\"\u003e\u003cimg src=\"https://img.shields.io/packagist/v/devinweb/laravel-test-parallel.svg?style=flat-square\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/devinweb/laravel-test-parallel\"\u003e\u003cimg src=\"https://img.shields.io/packagist/l/devinweb/laravel-test-parallel.svg?style=flat-square\" alt=\"License\"\u003e\u003c/a\u003e\n\nAs you may know laravel parallel testing is already available on [laravel v8.x](https://laravel.com/docs/8.x/testing#running-tests-in-parallel), but this feature not exitst on the old versions 5.x, 6.x and 7.x, So this package is here to fix this gap and enjoy the parallel testing.\n\nIt's based on [brianium/paratest](https://github.com/paratestphp/paratest) and implements the same logic that handle the testing command used in laravel, developed by [Nuno Maduro](https://github.com/nunomaduro).\n\n## Requirement\n\nThis package requires\n\n```json\n\"phpunit/phpunit\": \"^9.5.1\"\n```\n\nTo update your phpunit package you can add this dev dependency on your `composer.json`\n\n```json\n{\n    ...\n\n    \"require-dev\": {\n       ...,\n       \"phpunit/phpunit\": \"^9.5.1\"\n   },\n\n   ...\n}\n```\n\nThen remove your `composer.lock` file and tell the composer to install all the dependencies using `composer install`.\n\n## Installation\n\nYou can install the package via composer:\n\n```shell\ncomposer require devinweb/laravel-test-parallel\n```\n\nThis package will register itself automatically if your Laravel version 5.5+, through package auto-discovery.\n\n## Usage\n\nTo enjoy with the testing parallel run this command\n\n```shell\n\nphp artisan test:parallel -p6\n\n```\n\nFor more options you can run\n\n```shell\nphp artisan test:parallel --help\n```\n\n## Phpunit.xml\n\nMake sure to update all `\u003cenv .../\u003e` to `\u003cserver .../\u003e` in your **phpunit.xml** file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevinweb%2Flaravel-test-parallel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevinweb%2Flaravel-test-parallel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevinweb%2Flaravel-test-parallel/lists"}