PHPackages                             proxymakers/proxymakers-php - 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. [API Development](/categories/api)
4. /
5. proxymakers/proxymakers-php

ActiveLibrary[API Development](/categories/api)

proxymakers/proxymakers-php
===========================

PHP Library for ProxyMakers API (with laravel support)

v1.0.0(6y ago)15MITPHPPHP ^7.2

Since Jul 16Pushed 6y ago1 watchersCompare

[ Source](https://github.com/proxymakers/proxymakers-php)[ Packagist](https://packagist.org/packages/proxymakers/proxymakers-php)[ Docs](https://proxymakers.com/developers)[ RSS](/packages/proxymakers-proxymakers-php/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

[![Build Status](https://camo.githubusercontent.com/45e53b74e17baf0df9ac5f0291b96725905f47302ec3fcfa349cc5849f1c5818/68747470733a2f2f7472617669732d63692e6f72672f70726f78796d616b6572732f70726f78796d616b6572732d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/proxymakers/proxymakers-php)[![StyleCI](https://camo.githubusercontent.com/1948dab5fa51b69842514e79cc1458808c5ad27ab015634965da3727ca238392/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3139373034393139392f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/197049199)[![Total Downloads](https://camo.githubusercontent.com/066a34fa6ea98bff1025bb61a092114be2962a869c9419f299e6523e649d7713/68747470733a2f2f706f7365722e707567782e6f72672f70726f78796d616b6572732f70726f78796d616b6572732d7068702f642f746f74616c2e737667)](https://packagist.org/packages/proxymakers/proxymakers-php)[![Latest Stable Version](https://camo.githubusercontent.com/31277da6c8a41051ab8d60b3265645ad2783893edeb23c267710e67b04109bc2/68747470733a2f2f706f7365722e707567782e6f72672f70726f78796d616b6572732f70726f78796d616b6572732d7068702f762f737461626c652e737667)](https://packagist.org/packages/proxymakers/proxymakers-php)[![License](https://camo.githubusercontent.com/5aa10423c0f4ff2f27579b37283171f072e0b44b3dd212c2309b56ebcd89eb06/68747470733a2f2f706f7365722e707567782e6f72672f70726f78796d616b6572732f70726f78796d616b6572732d7068702f6c6963656e73652e737667)](https://packagist.org/packages/proxymakers/proxymakers-php)

proyxmakers-php
===============

[](#proyxmakers-php)

ProxyMakers PHP Library (with laravel support)

please read our [documentation](https://proxymakers.com/developers) for usage.

---

Installation
------------

[](#installation)

The recommended way to install this library is through Composer:

`$ composer require proxymakers/proxymakers-php`

If you're not familiar with `composer` follow the installation instructions for [Linux/Unix/Mac](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx) or [Windows](https://getcomposer.org/doc/00-intro.md#installation-windows), and then read the [basic usage introduction](https://getcomposer.org/doc/01-basic-usage.md).

### Laravel 5.5 and up

[](#laravel-55-and-up)

You don't have to do anything else, this package uses the Package Auto-Discovery feature, and should be available as soon as you install it via Composer.

### Laravel 5.4 or 5.3

[](#laravel-54-or-53)

Add the following Service Provider to your **config/app.php** providers array:

`ProxyMakers\API\ProxyMakersServiceProvider::class,`

### Publish Laravel Configuratino Files (All Versions)

[](#publish-laravel-configuratino-files-all-versions)

`php artisan vendor:publish --provider="ProxyMakers\API\ProxyMakersServiceProvider"`

### Environment Variables

[](#environment-variables)

```
PROXYMAKERS_TOKEN=

```

Standalone Usage
----------------

[](#standalone-usage)

after installing with composer you can simply initiate a new instance of ProxyMakers class:

```
$pm = new ProxyMakers\API\ProxyMakers($token);
// use the method you want, ex:
var_dump($pm->checkCredit()->getData());
```

Laravel Usage
-------------

[](#laravel-usage)

you can use dependency injection feature in any method of your controller or resolve it through laravel service container:

using dependency injection:

```
Route::get('/', function (\ProxyMakers\API\ProxyMakers $pm) {
    dd($pm->checkCredit()->getData());
});
```

using service container:

```
$pm = resolve('ProxyMakers\\API\\ProxyMakers');
dd($pm->checkCredit()->getData());
```

Dependencies
------------

[](#dependencies)

The library uses [Guzzle](https://github.com/guzzle/guzzle) as its HTTP communication layer.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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

Unknown

Total

1

Last Release

2494d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/80fe63a037c64484387e591145783fe2ca80c0ce8229d9dec92b1a1c2157ef62?d=identicon)[Pezhvak](/maintainers/Pezhvak)

---

Top Contributors

[![Pezhvak](https://avatars.githubusercontent.com/u/3134479?v=4)](https://github.com/Pezhvak "Pezhvak (13 commits)")

---

Tags

apilaravelpackagephpproxystandalone

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/proxymakers-proxymakers-php/health.svg)

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

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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