PHPackages                             emailcenter/mxm-api-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. emailcenter/mxm-api-php

Abandoned → [maxemail/api-php](/?search=maxemail%2Fapi-php)Library[API Development](/categories/api)

emailcenter/mxm-api-php
=======================

Maxemail API Client

6.1.1(10mo ago)45.0k1LGPL-3.0PHPPHP ^8.1CI passing

Since Oct 16Pushed 10mo ago4 watchersCompare

[ Source](https://github.com/maxemail/api-php)[ Packagist](https://packagist.org/packages/emailcenter/mxm-api-php)[ RSS](/packages/emailcenter-mxm-api-php/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (5)Versions (21)Used By (0)

Maxemail API Client for PHP
===========================

[](#maxemail-api-client-for-php)

[![Code Checks](https://camo.githubusercontent.com/7a442c0727bea67c90c119505c758b619ccab77b5f1be8c26008d491b30c928d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d6178656d61696c2f6170692d7068702f636f64652d636865636b732e796d6c3f6c6f676f3d676974687562)](https://github.com/maxemail/api-php/actions/workflows/code-checks.yml)[![Codecov](https://camo.githubusercontent.com/4f88e8aff82d697809603fd4ba792f56e2a06f1b266d4ff782f5c900daf8cd9d/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f6d6178656d61696c2f6170692d7068702e7376673f6c6f676f3d636f6465636f76)](https://codecov.io/gh/maxemail/api-php)[![Latest Stable Version](https://camo.githubusercontent.com/77b4f884dd9062e3c2ddafb836b16a3b514105403516920268a345bc5e131e03/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d6178656d61696c2f6170692d7068702e7376673f6c6f676f3d7061636b6167697374)](https://packagist.org/packages/maxemail/api-php)[![Total Downloads](https://camo.githubusercontent.com/8b1ce0f828334051e6089a15e48c6985066337b7948d25ffa9320c894504fb27/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d6178656d61696c2f6170692d7068702e7376673f6c6f676f3d7061636b6167697374)](https://packagist.org/packages/maxemail/api-php)[![Licence](https://camo.githubusercontent.com/d240180633ca5f1a6a5118a615b0012e17756e9e71ee44061dd0105bf60119ae/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6d6178656d61696c2f6170692d7068702e737667)](https://camo.githubusercontent.com/d240180633ca5f1a6a5118a615b0012e17756e9e71ee44061dd0105bf60119ae/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6d6178656d61696c2f6170692d7068702e737667)

Self-contained client in PHP for simplifying access to the Maxemail API

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

[](#requirements)

[![PHP](https://camo.githubusercontent.com/82d56976d15503f1bbdacd31627135a6c05cdf6c2031c47ffa599f0fd8845400/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253545382e312d627269676874677265656e2e737667)](https://camo.githubusercontent.com/82d56976d15503f1bbdacd31627135a6c05cdf6c2031c47ffa599f0fd8845400/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253545382e312d627269676874677265656e2e737667)

This package requires at least PHP 8.1 . Please see previous releases if you require compatibility with an older version of PHP.

Composer will verify any other environment requirements on install/update.

When creating a new major version of this package, we MAY drop support for PHP versions which are no longer [actively supported](https://php.net/supported-versions.php) by the PHP project.

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

[](#installation)

Including this package in your application is made easy by using [Composer](https://getcomposer.org).

```
$ composer require maxemail/api-php
```

Usage Example
-------------

[](#usage-example)

```
// Instantiate Client:
$config = [
    'username' => 'client ID',
    'password' => 'client secret'
];
$api = new \Maxemail\Api\Client($config);

// General:
$result = $api->serviceName->method($arg1, $arg2);
var_dump($result);
```

Logging
-------

[](#logging)

If you want more useful development-time debug info, throw the API a PSR-compatible logger:

```
$logger = new Logger(); // Must implement \Psr\Log\LoggerInterface
$api->setLogger($logger);
```

For a quick-start to logging (plus advanced multi-destination logging!), see [Phlib/Logger](https://github.com/phlib/logger)

Helpers
-------

[](#helpers)

The client also includes a *Helper* class to take care of common scenarios that are more complicated than the simple request-response model.

The helper is accessed from the client by the `getHelper()` method:

```
$api->getHelper()->downloadFile(...);
```

See the in-line documentation for helper methods for the required and optional parameters.

License
-------

[](#license)

This package is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this program. If not, see .

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance55

Moderate activity, may be stable

Popularity22

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity81

Battle-tested with a long release history

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

Recently: every ~8 days

Total

18

Last Release

302d ago

Major Versions

3.1.2 → 4.0.02017-08-08

4.1.0 → 5.0.02019-05-03

5.1.1 → 6.0.02025-02-14

5.2.0 → 6.1.02025-06-17

5.2.1 → 6.1.12025-07-20

PHP version history (6 changes)2.0PHP ~5.4

3.1PHP ^5.4|^7.0

4.0.0PHP ^7.0

5.0.0PHP ^7.1

5.0.1PHP ^7.1|^8

6.0.0PHP ^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/10c53cdcfb3a6d299820aecb993521cc1a972baa09fd8f31d2468908cded7e1d?d=identicon)[chrisminett](/maintainers/chrisminett)

![](https://www.gravatar.com/avatar/187c49ecb9764f662a25908497d3a613e20f901f25df2c37fa181590885f2062?d=identicon)[Pudge601](/maintainers/Pudge601)

![](https://www.gravatar.com/avatar/43fdd0e797e431e6fe6121ef1712c92d0f1dcc555cf80b6441dfbc81d88beee5?d=identicon)[qubit05](/maintainers/qubit05)

---

Top Contributors

[![chrisminett](https://avatars.githubusercontent.com/u/1084019?v=4)](https://github.com/chrisminett "chrisminett (176 commits)")

###  Code Quality

TestsPHPUnit

Code StyleECS

### Embed Badge

![Health badge](/badges/emailcenter-mxm-api-php/health.svg)

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

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[theodo-group/llphant

LLPhant is a library to help you build Generative AI applications.

1.5k311.5k5](/packages/theodo-group-llphant)[wheelpros/fitment-platform-api

Magento 2 (Open Source)

12.1k1.2k](/packages/wheelpros-fitment-platform-api)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

517.9M7](/packages/avalara-avataxclient)[alexacrm/dynamics-webapi-toolkit

Web API toolkit for Microsoft Dynamics 365 and Dynamics CRM

81324.1k1](/packages/alexacrm-dynamics-webapi-toolkit)[commercetools/commercetools-sdk

The official PHP SDK for the commercetools Composable Commerce APIs

19281.5k](/packages/commercetools-commercetools-sdk)

PHPackages © 2026

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