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

ActiveLibrary[API Development](/categories/api)

steffenbrand/bamboo-api-client
==============================

Bamboo API Client

v1.3.0(8y ago)293311PHPPHP &gt;=7.0

Since Oct 19Pushed 8y ago1 watchersCompare

[ Source](https://github.com/steffenbrand/bamboo-api-client)[ Packagist](https://packagist.org/packages/steffenbrand/bamboo-api-client)[ Docs](https://github.com/steffenbrand/bamboo-api-client)[ RSS](/packages/steffenbrand-bamboo-api-client/feed)WikiDiscussions master Synced today

READMEChangelog (6)Dependencies (2)Versions (7)Used By (1)

Bamboo API Client
=================

[](#bamboo-api-client)

PHP client for Bamboo API (6.1.1)

- [Bamboo API Client on Packagist](https://packagist.org/packages/steffenbrand/bamboo-api-client)
- [Bamboo API Client on GitHub](https://github.com/steffenbrand/bamboo-api-client)

Limitations
-----------

[](#limitations)

Currently only supports the following methods:

- `/rest/api/latest/result/{key}` (getLatestResultByKey)
- `/rest/api/latest/plan` (getPlanList)

How to install
--------------

[](#how-to-install)

```
composer require steffenbrand/bamboo-api-client

```

How to use
----------

[](#how-to-use)

### getLatestResultByKey

[](#getlatestresultbykey)

```
try {
    $client = new BambooClient(
        'http://bamboo.dev',
        'user',
        'pass'
    );

    $result = $client->getLatestResultByKey('MYPLAN-KEY');

    $result->getNumber();
    $result->getState();
    $result->getLink()->getHref();
    $result->getPlan()->getKey();
    $result->getPlan()->getName();
    $result->getPlan()->getShortKey();
    $result->getPlan()->getShortName();
    $result->getPlan()->getLink()->getHref();
} catch (BambooRequestException $e) {
    // Request might fail
} catch (\RuntimeException $e) {
    // Something could go wrong during runtime
}
```

### getPlanList

[](#getplanlist)

```
try {
    $client = new BambooClient(
        'http://bamboo.dev',
        'user',
        'pass'
    );

    $result = $client->getPlanList();

    if (count($result) > 0) {
        foreach ($result as $plan) {
            $plan->getKey();
            $plan->getName();
            $plan->getShortKey();
            $plan->getShortName();
            $plan->getLink()->getHref();
        }
    }
} catch (BambooRequestException $e) {
    // Request might fail
} catch (\RuntimeException $e) {
    // Something could go wrong during runtime
}
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 78.6% 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 ~13 days

Total

6

Last Release

3063d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1c0012c84bdbe5a801bef48e509ea28f5aa0359dcba13286ff6065a298f21c49?d=identicon)[steffenbrand](/maintainers/steffenbrand)

---

Top Contributors

[![steffenbrand](https://avatars.githubusercontent.com/u/5013806?v=4)](https://github.com/steffenbrand "steffenbrand (11 commits)")[![Kbroeren](https://avatars.githubusercontent.com/u/7422452?v=4)](https://github.com/Kbroeren "Kbroeren (3 commits)")

---

Tags

bamboobamboo-apiwebservice-client

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/steffenbrand-bamboo-api-client/health.svg)

```
[![Health](https://phpackages.com/badges/steffenbrand-bamboo-api-client/health.svg)](https://phpackages.com/packages/steffenbrand-bamboo-api-client)
```

###  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)
