shintio / yii2-proxy-httpclient
Native httpclient with custom or autoparsed free proxy servers
Installs: 73
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 1
Type:yii2-extension
Requires
- electrolinux/phpquery: ^0.9.6
- yiisoft/yii2: ~2.0.0
- yiisoft/yii2-httpclient: ^2.0
This package is not auto-updated.
Last update: 2025-03-23 06:16:18 UTC
README
Native httpclient with custom or autoparsed free proxy servers
Installation
The preferred way to install this extension is through composer.
Either run
composer require --prefer-dist shintio/yii2-proxy-httpclient "*"
or add
"shintio/yii2-proxy-httpclient": "*"
to the require section of your composer.json
file.
Apply migrations by following command:
php yii migrate --migrationPath="vendor/shintio/yii2-proxy-httpclient/src/database/migrations/"
Usage
Once the extension is installed, simply use it in your code like:
use shintio\yii2\proxy\components\Client; $client = new Client(); $request = $client->createRequest()->setMethod('get')->setUrl('https://2ip.ru/'); $response = $request->send(); echo $response->content; die;