{"id":19107799,"url":"https://github.com/alleyinteractive/wp-concurrent-remote-requests","last_synced_at":"2026-02-19T06:03:18.628Z","repository":{"id":49946537,"uuid":"518216662","full_name":"alleyinteractive/wp-concurrent-remote-requests","owner":"alleyinteractive","description":"Feature plugin for concurrent HTTP remote requests","archived":false,"fork":false,"pushed_at":"2025-08-27T17:01:14.000Z","size":161,"stargazers_count":4,"open_issues_count":4,"forks_count":2,"subscribers_count":21,"default_branch":"main","last_synced_at":"2025-08-28T00:57:05.166Z","etag":null,"topics":["wordpress","wordpress-plugin"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alleyinteractive.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,"zenodo":null}},"created_at":"2022-07-26T21:04:23.000Z","updated_at":"2025-08-27T16:48:21.000Z","dependencies_parsed_at":"2025-04-30T18:49:54.155Z","dependency_job_id":"cf4464dc-3904-4115-b72f-87f73ffed6ec","html_url":"https://github.com/alleyinteractive/wp-concurrent-remote-requests","commit_stats":{"total_commits":35,"total_committers":3,"mean_commits":"11.666666666666666","dds":0.5142857142857142,"last_synced_commit":"34772b12596e0a6fd482e6eb1e0f96b95644e163"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":"alleyinteractive/create-wordpress-plugin","purl":"pkg:github/alleyinteractive/wp-concurrent-remote-requests","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alleyinteractive%2Fwp-concurrent-remote-requests","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alleyinteractive%2Fwp-concurrent-remote-requests/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alleyinteractive%2Fwp-concurrent-remote-requests/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alleyinteractive%2Fwp-concurrent-remote-requests/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alleyinteractive","download_url":"https://codeload.github.com/alleyinteractive/wp-concurrent-remote-requests/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alleyinteractive%2Fwp-concurrent-remote-requests/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29604552,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T05:11:50.834Z","status":"ssl_error","status_checked_at":"2026-02-19T05:11:38.921Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["wordpress","wordpress-plugin"],"created_at":"2024-11-09T04:14:01.444Z","updated_at":"2026-02-19T06:03:18.622Z","avatar_url":"https://github.com/alleyinteractive.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Concurrent Remote Requests Feature Plugin\n\nStable tag: 1.1.1\n\nRequires at least: 5.9\n\nTested up to: 6.8\n\nRequires PHP: 7.4\n\nLicense: GPL v2 or later\n\nTags: alleyinteractive, wp-concurrent-remote-requests\n\nContributors: alleyinteractive, srtfisher\n\n[![All Pull Request Tests](https://github.com/alleyinteractive/wp-concurrent-remote-requests/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/alleyinteractive/wp-concurrent-remote-requests/actions/workflows/tests.yml)\n\nA WordPress Feature plugin for concurrent HTTP remote requests in WordPress.\nAdds namespaced helper functions to make concurrent remote requests. Being\ntracked in\nhttps://github.com/WordPress/wordpress-develop/pull/3022 and\nhttps://core.trac.wordpress.org/ticket/37459.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require alleyinteractive/wp-concurrent-remote-requests\n```\n\n## Usage\n\nActivate the plugin in WordPress and use it like so:\n\n```php\n// Supports an array of URLs:\n\\Alley\\WP\\Concurrent_Remote_Requests\\wp_remote_get(\n\t[\n\t\t'https://alley.co/',\n\t\t'https://wordpress.org/',\n\t]\n);\n\n// Or more complex requests.\n\\Alley\\WP\\Concurrent_Remote_Requests\\wp_remote_request(\n\t[\n\t\t[\n\t\t\t'https://alley.co/',\n\t\t\t[\n\t\t\t\t'body'   =\u003e [ ... ],\n\t\t\t\t'method' =\u003e 'POST',\n\t\t\t],\n\t\t],\n\t\t[\n\t\t\t'https://wordpress.org/',\n\t\t\t[\n\t\t\t\t'method' =\u003e 'DELETE',\n\t\t\t],\n\t\t],\n\t]\n);\n\n```\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Credits\n\n- [Sean Fisher](https://github.com/srtfisher)\n- [All Contributors](../../contributors)\n\n## License\n\nThe GNU General Public License (GPL) license. Please see [License File](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falleyinteractive%2Fwp-concurrent-remote-requests","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falleyinteractive%2Fwp-concurrent-remote-requests","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falleyinteractive%2Fwp-concurrent-remote-requests/lists"}