PHPackages                             expressmakers/expressmakers-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. expressmakers/expressmakers-php

ActiveLibrary[API Development](/categories/api)

expressmakers/expressmakers-php
===============================

PHP Library for ExpressMakers API (with laravel support)

v1.0.1(6y ago)06MITPHPPHP ^7.2CI failing

Since Feb 25Pushed 6y ago1 watchersCompare

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

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

[![Build Status](https://camo.githubusercontent.com/c5f8682793787f464607eed82bfcf047d7daaafdbb1df77a67683e4c26d72f0d/68747470733a2f2f7472617669732d63692e6f72672f657870726573736d616b6572732f657870726573736d616b6572732d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/expressmakers/expressmakers-php)[![StyleCI](https://camo.githubusercontent.com/fc2eec83d64d68fb8c92f4a6366e1f0c90def73c63f8089f7ce5aaa3f57e4a66/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3234323934303833372f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/242940837)[![Total Downloads](https://camo.githubusercontent.com/2cd0a1d3ccc9d0fea201f50932007abaa36f5de633588826120d1edf4dd75c02/68747470733a2f2f706f7365722e707567782e6f72672f657870726573736d616b6572732f657870726573736d616b6572732d7068702f642f746f74616c2e737667)](https://packagist.org/packages/expressmakers/expressmakers-php)[![Latest Stable Version](https://camo.githubusercontent.com/3ae45626efd70dcb8cd6dfed47a096dc79cce301413becd34da0494f0a408778/68747470733a2f2f706f7365722e707567782e6f72672f657870726573736d616b6572732f657870726573736d616b6572732d7068702f762f737461626c652e737667)](https://packagist.org/packages/expressmakers/expressmakers-php)[![License](https://camo.githubusercontent.com/a54cb81ce879a5ceb64622c6dbadae6abfa2dafd9cf83f4ad9a6ff3775ccfce0/68747470733a2f2f706f7365722e707567782e6f72672f657870726573736d616b6572732f657870726573736d616b6572732d7068702f6c6963656e73652e737667)](https://packagist.org/packages/expressmakers/expressmakers-php)

expressmakers-php
=================

[](#expressmakers-php)

ExpressMakers PHP Library (with laravel support)

please read our [documentation](https://developer.expressmakers.com) for usage.

---

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

[](#installation)

The recommended way to install this library is through Composer:

`$ composer require expressmakers/expressmakers-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:

`ExpressMakers\API\ExpressMakersServiceProvider::class,`

### Publish Laravel Configuratino Files (All Versions)

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

`php artisan vendor:publish --provider="ExpressMakers\API\ExpressMakersServiceProvider"`

### Environment Variables

[](#environment-variables)

```
expressmakers_TOKEN=

```

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

[](#standalone-usage)

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

```
$em = new Expressmakers\API\ExpressMakers($token);
// use the method you want, ex:
var_dump($em->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 (\Expressmakers\API\ExpressMakers $pm) {
    dd($pm->getOrders()->getData());
});
```

using service container:

```
$em = resolve('ExpressMakers\\API\\ExpressMakers');
dd($em->getOrders()->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

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

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 ~29 days

Total

2

Last Release

2242d 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 (12 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/expressmakers-expressmakers-php/health.svg)](https://phpackages.com/packages/expressmakers-expressmakers-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)
