{"id":29746528,"url":"https://github.com/rezaparsian/guzzle","last_synced_at":"2025-07-26T07:14:57.875Z","repository":{"id":65058686,"uuid":"581432059","full_name":"RezaParsian/Guzzle","owner":"RezaParsian","description":"This package will help you to get data easier than usual from guzzle.","archived":false,"fork":false,"pushed_at":"2024-07-29T06:00:14.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-27T16:22:47.748Z","etag":null,"topics":["guzzle","guzzlehttp"],"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/RezaParsian.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2022-12-23T07:02:06.000Z","updated_at":"2024-07-29T05:59:20.000Z","dependencies_parsed_at":"2024-07-29T07:15:33.730Z","dependency_job_id":"8bc0fdf1-eb8c-41a5-a17c-3e83e19b09a8","html_url":"https://github.com/RezaParsian/Guzzle","commit_stats":{"total_commits":3,"total_committers":1,"mean_commits":3.0,"dds":0.0,"last_synced_commit":"bbf5e7bf18fafa741284080e1e166c39638bc4d5"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/RezaParsian/Guzzle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RezaParsian%2FGuzzle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RezaParsian%2FGuzzle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RezaParsian%2FGuzzle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RezaParsian%2FGuzzle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RezaParsian","download_url":"https://codeload.github.com/RezaParsian/Guzzle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RezaParsian%2FGuzzle/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267133958,"owners_count":24040789,"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-07-26T02:00:08.937Z","response_time":62,"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":["guzzle","guzzlehttp"],"created_at":"2025-07-26T07:14:52.849Z","updated_at":"2025-07-26T07:14:57.845Z","avatar_url":"https://github.com/RezaParsian.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"![guzzle](https://raw.githubusercontent.com/guzzle/guzzle/master/.github/logo.png)\n\n# Guzzle, PHP HTTP client\n\nGuzzle is a PHP HTTP client that makes it easy to send HTTP requests and trivial to integrate with web services.\n\nSimple interface for building query strings, POST requests, streaming large uploads, streaming large downloads, using HTTP cookies, uploading JSON data, etc...\n\nBut It's hard to read response form end points.\n\nThis package will help you to get data easier than usual.\n\n## Instaliation\n\n```shell\ncomposer require rp76/guzzle\n```\n\n## Usage\n\n```php\n$client = new \\Rp76\\Guzzle\\Client(); // make new instance\n\n$request = new \\GuzzleHttp\\Psr7\\Request('GET', 'https://rp76.ir');\n\nreturn $client-\u003eeasySend($request); // get body of response\n```\n\n## Availbe methods\n\n| Method       | Short one                                    |\n|--------------|----------------------------------------------|\n|`$client-\u003eeasySend($request)-\u003egetBody()` | `$client-\u003eeasySend($request)-\u003ebody`          |\n|`$client-\u003eeasySend($request)-\u003egetJson()` | `$client-\u003eeasySend($request)-\u003ejson`          |\n|`$client-\u003eeasySend($request)-\u003egetObject()` | `$client-\u003eeasySend($request)-\u003eobject`        |\n|`$client-\u003eeasySend($request)-\u003egetHeaders()` | `$client-\u003eeasySend($request)-\u003eheaders`       |\n|`$client-\u003eeasySend($request)-\u003egetHeader()` |                                              |\n|`$client-\u003eeasySend($request)-\u003egetRequestHeaders()` | `$client-\u003eeasySend($request)-\u003erequestHeaders` |\n|`$client-\u003eeasySend($request)-\u003egetRequestHeader()` |                                              |\n|`$client-\u003eeasySend($request)-\u003egetStatusCode()` | `$client-\u003eeasySend($request)-\u003estatusCode`    |\n|`$client-\u003eeasySend($request)-\u003esuccess()` |                                              |\n|`$client-\u003eeasySend($request)-\u003egetRequestParams()` | `$client-\u003eeasySend($request)-\u003erequestParams` |\n|`$client-\u003eeasySend($request)-\u003egetRequestUrl()` | `$client-\u003eeasySend($request)-\u003erequestUrl`    |\n|`$client-\u003eeasySend($request)-\u003egetEffectiveUrl()` | `$client-\u003eeasySend($request)-\u003eeffectiveUrl`  |\n|`$client-\u003eeasySend($request)-\u003egetResponseTime()` | `$client-\u003eeasySend($request)-\u003eResponseTime`  |\n\n\u003e **getEffectiveUrl**: return request url after _redirect_.\n\n\n## License\nThe MIT License (MIT). Please see [License File](https://github.com/RezaParsian/Guzzle/blob/master/LICENCE) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frezaparsian%2Fguzzle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frezaparsian%2Fguzzle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frezaparsian%2Fguzzle/lists"}