PHPackages                             lionsmantle/supportboard-client - 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. lionsmantle/supportboard-client

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

lionsmantle/supportboard-client
===============================

A PHP library providing an abstraction layer for SupportBoard PHP functions, designed for WordPress plugin integration

01PHP

Since Jul 12Pushed 10mo agoCompare

[ Source](https://github.com/lionsmantle/supportboard-client)[ Packagist](https://packagist.org/packages/lionsmantle/supportboard-client)[ RSS](/packages/lionsmantle-supportboard-client/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

SupportBoard Client
===================

[](#supportboard-client)

A PHP library providing an abstraction layer for SupportBoard PHP functions, designed for WordPress plugin integration.

Features
--------

[](#features)

- **Clean OOP Interface**: Wraps SupportBoard's function-based API in service classes
- **WordPress Integration**: Designed specifically for WordPress plugin development
- **Comprehensive Testing**: Unit and integration tests with mocking capabilities
- **Error Handling**: Standardized responses and exception hierarchy
- **Type Safety**: Full type hints and return type declarations

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

[](#requirements)

- PHP 7.4 or higher
- WordPress 5.0 or higher
- SupportBoard 3.8.2 or compatible

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

[](#installation)

```
composer require lionsmantle/supportboard-client
```

Quick Start
-----------

[](#quick-start)

```
use LionsMantle\SupportBoardClient\SupportBoardClient;

// Initialize the client
$client = new SupportBoardClient();

// Get user by ID
$userService = $client->users();
$response = $userService->getUser(123);

if ($response->success) {
    $user = $response->data;
    echo "User: " . $user['first_name'] . ' ' . $user['last_name'];
} else {
    echo "Error: " . $response->error;
}

// Get user by email (new!)
$response = $userService->getUserByEmail('john@example.com');
if ($response->success) {
    $user = $response->data;
    echo "Found user: " . $user['email'];
}
```

Services
--------

[](#services)

- **UserService**: User management (get by ID/email, create, authenticate)
- **ConversationService**: Conversation handling
- **MessageService**: Message operations
- **AdminService**: Admin and agent functions
- **SettingsService**: Configuration management
- **DatabaseService**: Database operations
- **LanguageService**: Translation functions

Testing
-------

[](#testing)

```
# Run all tests
composer test

# Run unit tests only
composer test:unit

# Run with coverage
composer test:coverage
```

Code Quality
------------

[](#code-quality)

```
# Check coding standards
composer lint

# Fix coding standards
composer lint:fix

# Run static analysis
composer analyze
```

License
-------

[](#license)

MIT License. See LICENSE file for details.

Contributing
------------

[](#contributing)

Please see CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance39

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity14

Early-stage or recently created project

 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.

### Community

Maintainers

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

---

Top Contributors

[![lionsmantle](https://avatars.githubusercontent.com/u/158389751?v=4)](https://github.com/lionsmantle "lionsmantle (2 commits)")

### Embed Badge

![Health badge](/badges/lionsmantle-supportboard-client/health.svg)

```
[![Health](https://phpackages.com/badges/lionsmantle-supportboard-client/health.svg)](https://phpackages.com/packages/lionsmantle-supportboard-client)
```

###  Alternatives

[miaababikir/laravel-tailwind-dashboard-preset

Laravel tailwind css dashboard preset

3634.7k](/packages/miaababikir-laravel-tailwind-dashboard-preset)[jansenfelipe/cpf-gratis

Com esse pacote você poderá consultar, gratuitamente, CPFs diretamente no site da receita.

1895.9k](/packages/jansenfelipe-cpf-gratis)[denisogr/yii2-cronjobs

cronjobs

4737.1k1](/packages/denisogr-yii2-cronjobs)[inpsyde/wp-stubs

WordPress Stubs

2362.3k4](/packages/inpsyde-wp-stubs)[zackslash/php-web-article-extractor

Web Article Extractor

452.1k](/packages/zackslash-php-web-article-extractor)

PHPackages © 2026

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