{"id":36388247,"url":"https://github.com/mrethical/http-proxies","last_synced_at":"2026-01-11T15:05:20.061Z","repository":{"id":60484506,"uuid":"543421597","full_name":"mrethical/http-proxies","owner":"mrethical","description":"Use http proxies within your Laravel application","archived":false,"fork":false,"pushed_at":"2023-10-09T11:50:20.000Z","size":49,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-19T14:04:10.493Z","etag":null,"topics":["client","guzzlehttp","http","laravel","proxy"],"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/mrethical.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-30T03:56:44.000Z","updated_at":"2023-02-20T14:27:06.000Z","dependencies_parsed_at":"2023-02-16T06:40:27.245Z","dependency_job_id":null,"html_url":"https://github.com/mrethical/http-proxies","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"spatie/package-skeleton-laravel","purl":"pkg:github/mrethical/http-proxies","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrethical%2Fhttp-proxies","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrethical%2Fhttp-proxies/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrethical%2Fhttp-proxies/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrethical%2Fhttp-proxies/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrethical","download_url":"https://codeload.github.com/mrethical/http-proxies/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrethical%2Fhttp-proxies/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28309752,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: 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":["client","guzzlehttp","http","laravel","proxy"],"created_at":"2026-01-11T15:05:19.547Z","updated_at":"2026-01-11T15:05:20.052Z","avatar_url":"https://github.com/mrethical.png","language":"PHP","readme":"# Use http proxies within your Laravel application\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/mrethical/http-proxies.svg?style=flat-square)](https://packagist.org/packages/mrethical/http-proxies)\n[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/mrethical/http-proxies/run-tests.yml?branch=main\u0026label=tests\u0026style=flat-square)](https://github.com/mrethical/http-proxies/actions?query=workflow%3Arun-tests+branch%3Amain)\n[![GitHub Code Style Action Status](https://img.shields.io/github/actions\\workflow/status/mrethical/http-proxies/fix-php-code-style-issues.yml?branch=main\u0026label=code%20style\u0026style=flat-square)](https://github.com/mrethical/http-proxies/actions?query=workflow%3A\"Fix+PHP+code+style+issues\"+branch%3Amain)\n[![Total Downloads](https://img.shields.io/packagist/dt/mrethical/http-proxies.svg?style=flat-square)](https://packagist.org/packages/mrethical/http-proxies)\n\nThis package help you set up a simple ip proxies management. It can also give you a GuzzleClient with a fresh active proxy configured.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require mrethical/http-proxies\n```\n\nYou can publish and run the migrations with:\n\n```bash\nphp artisan vendor:publish --tag=\"http-proxies-migrations\"\nphp artisan migrate\n```\nYou can publish the config file with:\n\n```bash\nphp artisan vendor:publish --tag=\"http-proxies-config\"\n```\n\nThis is the contents of the published config file:\n\n```php\nreturn [\n    'model' =\u003e Mrethical\\HttpProxies\\Models\\Proxy::class,\n    'selenium' =\u003e [\n        'url' =\u003e env('SELENIUM_URL', 'http://localhost:4444'),\n        'timeouts' =\u003e [\n            'connection' =\u003e env('SELENIUM_CONNECTION_TIMEOUT'),\n            'request' =\u003e env('SELENIUM_REQUEST_TIMEOUT'),\n            'pageload' =\u003e env('SELENIUM_PAGELOAD_TIMEOUT', 60),\n            'script' =\u003e env('SELENIUM_SCRIPT_TIMEOUT', 3),\n        ],\n    ],\n];\n```\n## Usage\n\nAdd a proxy by calling the `http-proxies:add` command\n\n```bash\nphp artisan http-proxies:add 1.2.3.4 --port=80\n```\n\nOn your code, get a GuzzleClient with a fresh active proxy.\n\n```php\nuse Mrethical\\HttpProxies\\HttpProxies;\n\n$client = app(HttpProxies::class)-\u003ecreateClient();\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- [Jefferson Magboo](https://github.com/mrethical)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrethical%2Fhttp-proxies","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrethical%2Fhttp-proxies","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrethical%2Fhttp-proxies/lists"}