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

ActiveLibrary[API Development](/categories/api)

buzzboard/buzzboard-php-sdk
===========================

BuzzBoard PHP SDK

00PHP

Since Jan 6Pushed 10y ago3 watchersCompare

[ Source](https://github.com/buzzboard/buzzboard-php-sdk)[ Packagist](https://packagist.org/packages/buzzboard/buzzboard-php-sdk)[ RSS](/packages/buzzboard-buzzboard-php-sdk/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

BuzzBoard SDK for PHP
=====================

[](#buzzboard-sdk-for-php)

[![Build Status](https://camo.githubusercontent.com/fbeb5e0c044b61040f9cfc867942779938cc9d7912546f2f070176ef6950ffec/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f62757a7a626f6172642f62757a7a626f6172642d7068702d73646b2f6261646765732f6275696c642e706e673f623d6d6173746572)](https://travis-ci.org/buzzboard/buzzboard-php-sdk)[![Latest Stable Version](https://camo.githubusercontent.com/1ddb5f078df3d26e201c46979b8a75fbb9ebb54f2ce36dcb791ef07929fa0835/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6174657374253230537461626c652d6d61737465722d626c75652e737667)](https://packagist.org/packages/buzzboard/buzzboard-php-sdk)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/9116439a32d0abcfee2731c0a651341166f86d6080035d793f801416324f5a26/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f42757a7a426f6172642f62757a7a626f6172642d7068702d73646b2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/BuzzBoard/buzzboard-php-sdk/?branch=master)

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

[](#installation)

The BuzzBoard SDK can be installed via [composer](https://getcomposer.org/)

```
composer require buzzboard/buzzboard-php-sdk
```

Documentation
-------------

[](#documentation)

API [documentation](https://api.buzzboard.com/documentation) &amp; [Response Codes](https://api.buzzboard.com/documentation/#api-ResponseCodes)

Authentication
--------------

[](#authentication)

```
require __DIR__ . '/vendor/autoload.php';
use BuzzBoard\Client;

$client = new Client('YOUR_API_KEY');
```

Add Profile
-----------

[](#add-profile)

```
$profile = new BuzzBoard\Profile($client);
$profile->business = 'The business name'; // required
$profile->website = 'http://thebusinessname.com'; // optional
$profile->phone = '123456798'; // required
$profile->address = 'street address'; // required
$profile->city = 'city'; // required
$profile->state = 'state'; // required
$profile->zip = '50001'; // required
// ISO 3166-1 country code (http://en.wikipedia.org/wiki/ISO_3166-1)
$profile->country_code = 'us';

// Account Manager (under which this listing should be listed on BuzzBoard)
$profile->username = 'my_username'; // required
// Contact Person
$profile->contact_name = 'John Doe'; // optional - contact persons name
$profile->contact_email = 'john@example.com'; // optional - contact persons email address
$profile->contact_phone = '132-456-7891'; // optional - contact persons phone number

// Profile ID
$id = $profile->save();
```

Get Profile
-----------

[](#get-profile)

```
$profile = new BuzzBoard\Profile($client);
$details = $profile->get($id);

print_r($details);
```

Regenerate Profile
------------------

[](#regenerate-profile)

```
$profile = new BuzzBoard\Profile($client);
$running = $profile->regenerate('PROFILE_ID');

var_export($running); // boolean
```

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 88.9% 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://avatars.githubusercontent.com/u/397415?v=4)[Mir Adnan](/maintainers/miradnan)[@miradnan](https://github.com/miradnan)

![](https://avatars.githubusercontent.com/u/16384122?v=4)[BuzzBoard](/maintainers/BuzzBoard)[@buzzboard](https://github.com/buzzboard)

---

Top Contributors

[![miradnan](https://avatars.githubusercontent.com/u/397415?v=4)](https://github.com/miradnan "miradnan (72 commits)")[![buzzboard](https://avatars.githubusercontent.com/u/16384122?v=4)](https://github.com/buzzboard "buzzboard (9 commits)")

### Embed Badge

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

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

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

94452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

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