PHPackages                             jtanjung/proxier - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. jtanjung/proxier

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

jtanjung/proxier
================

Free proxy seeder for PHP

v0.4-beta(4y ago)05PHP

Since May 12Pushed 4y ago1 watchersCompare

[ Source](https://github.com/jtanjung/proxier)[ Packagist](https://packagist.org/packages/jtanjung/proxier)[ Docs](https://github.com/jtanjung/proxier)[ RSS](/packages/jtanjung-proxier/feed)WikiDiscussions main Synced today

READMEChangelog (4)Dependencies (1)Versions (5)Used By (0)

Proxier
=======

[](#proxier)

Free proxy seeder for PHP

Install
-------

[](#install)

Via Composer

```
composer require jtanjung/proxier

```

Requirements
------------

[](#requirements)

This package require a service from [jtanjung/pehape](https://github.com/jtanjung/pehape) which contain several webdriver executable files that are needed by WebPageService to run its functionalities. As for the default webdrivers, please refer to these 3 different browser below:

- Chrome v90.x
- Firefox v75.0
- Opera v75.x

### Links

[](#links)

For other version of the webdriver, please follow these links below:

- [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/downloads)
- [GeckoDriver for Firefox](https://github.com/mozilla/geckodriver/releases)
- [OperaDriver](https://github.com/operasoftware/operachromiumdriver/releases)

Note: The version of the browser and its driver must be compatible!

How to use
----------

[](#how-to-use)

### Seeding Proxy

[](#seeding-proxy)

Fetch proxy IPs from a free proxy sites:

```
use Proxier\ProxySeeder;

$seeder = new ProxySeeder();
$proxy = $seeder->FreeProxyListNet();
$proxy->SetTimeOut(60);
$proxy->Seed();
```

### Get a Random Proxy

[](#get-a-random-proxy)

Get a random proxy information from the cache:

```
use Proxier\ProxySeeder;

$seeder = new ProxySeeder();
// Try to get random proxy from the cache
echo "Get a random proxy....\n";
// Call Get function to get a random entry, or pass md5 value of IP:Port
$proxy = $seeder->Seed()->Get();
echo json_encode($proxy) . "\n";
```

### Using Event Listener

[](#using-event-listener)

Easy coding by binding event listeners to the seeder:

```
use Proxier\ProxySeeder;

$seeder = new ProxySeeder();
$seeder->Bind('OnLoading', function(){
  echo "Start seeding, please wait...\n";
});
$seeder->Bind('OnSeeding', function($value){
  echo json_encode($value) . "\n";
  // You can put block code here to insert the new proxy to database
  /** ->Save([
   *   "ip" => $value->IP,
   *   "port" => $value->Port
   *   "location" => $value->Location
   * ]);
   */
});
$seeder->Bind('OnComplete', function($value){
  echo "\nComplete...\n";
  echo $value->count() ." proxy found.";
});
$seeder->Bind('OnError', function($msg, $exc){
  echo "Message = '$msg'\n";
  // throw $exc;
});
```

### More options

[](#more-options)

Testing proxy using ProxyTester:

```
$tester = new Proxier\ProxyTester();
$tester->SetProxy("", "");
$tester->Bind('OnError', function($msg, $exc){
  echo "Message = '$msg'\n";
  // throw $exc;
});
$tester->Run();
```

See more examples [here](https://github.com/jtanjung/proxier/tree/main/tests)

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~10 days

Total

4

Last Release

1793d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e16ae9f9d8aaea6ec74f29de8f54bc298acda71a23c69552eee3785d425bb76c?d=identicon)[jtanjung](/maintainers/jtanjung)

---

Top Contributors

[![jtanjung](https://avatars.githubusercontent.com/u/312535?v=4)](https://github.com/jtanjung "jtanjung (21 commits)")

---

Tags

phpproxyproxy-list

### Embed Badge

![Health badge](/badges/jtanjung-proxier/health.svg)

```
[![Health](https://phpackages.com/badges/jtanjung-proxier/health.svg)](https://phpackages.com/packages/jtanjung-proxier)
```

###  Alternatives

[infocyph/uid

UUID (RFC 4122 + Unofficial/Draft), ULID, Snowflake ID, Sonyflake ID, TBSL (library exclusive) generator!

105.1k](/packages/infocyph-uid)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
