PHPackages                             seblegall/php-trello-burndown - 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. seblegall/php-trello-burndown

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

seblegall/php-trello-burndown
=============================

A Trello based burndown generator for SCRUM

v0.1.0(10y ago)218MITPHP &gt;=7.0

Since Jun 2Compare

[ Source](https://github.com/seblegall/php-trello-burndown)[ Packagist](https://packagist.org/packages/seblegall/php-trello-burndown)[ Docs](https://github.com/seblegall/php-trello-burndown)[ RSS](/packages/seblegall-php-trello-burndown/feed)WikiDiscussions Synced today

READMEChangelogDependencies (2)Versions (3)Used By (0)

Php Trello Burndown
===================

[](#php-trello-burndown)

[![Twitter](https://camo.githubusercontent.com/a7093f4b009fd57885f7b0791f581034e3103ed4f5305e92773c0fb241213318/68747470733a2f2f696d672e736869656c64732e696f2f747769747465722f75726c2f68747470732f6769746875622e636f6d2f7365626c6567616c6c2f7068702d7472656c6c6f2d6275726e646f776e2e7376673f7374796c653d736f6369616c)](https://twitter.com/intent/tweet?text=Wow:&url=%5Bobject%20Object%5D) [![GitHub license](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](https://raw.githubusercontent.com/seblegall/php-trello-burndown/master/LICENSE.md) [![Build Status](https://camo.githubusercontent.com/29341c405ea76ab8be17e74aff76dbb12a7ab97c3282e694203e4c78260c4d3c/68747470733a2f2f7472617669732d63692e6f72672f7365626c6567616c6c2f7068702d7472656c6c6f2d6275726e646f776e2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/seblegall/php-trello-burndown) [![Code Coverage](https://camo.githubusercontent.com/1e5459c47280eeabb896f11bb5cbcece46e836ca60be417da6d9c516f141b63e/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7365626c6567616c6c2f7068702d7472656c6c6f2d6275726e646f776e2f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/seblegall/php-trello-burndown/?branch=master) [![Scrutinizer Code Quality](https://camo.githubusercontent.com/da77dbada14e038a861ec221096a3785d25fc976377472ad0af5587fe74be093/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7365626c6567616c6c2f7068702d7472656c6c6f2d6275726e646f776e2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/seblegall/php-trello-burndown/?branch=master)

A PHP Scrum burndown generator based on Trello API.

This lib helps you to generate a Story Point Burndown chart based on Trello.

[![Burndown](./doc/screenshot.png)](./doc/screenshot.png)

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

[](#requirements)

- PHP &gt; 7.0
- Composer

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

[](#installation)

Using composer :

```
$ composer require seblegall/php-trello-burndown
```

Usage
-----

[](#usage)

```
// Create a new sprint
$sprint = new \TrelloBurndown\Model\Sprint();
// Set a start date
$sprint->setStart(new \DateTime('2016-05-24'));
// Set a duration
$sprint->setDuration(new \DateInterval('P14D'));

//Create a new Trello Client
$trelloClient = new \TrelloBurndown\Client\TrelloClient('{Your Key}', '{Your Token');

// Create a new generator and pass your client as argument.
$burndownGenerator = new \TrelloBurndown\BurndownGenerator($trelloClient);
/*
 * Add on or more board with the board full name.
 * Pay attention, if the board name is wrong or cannot
 * be find with your Trello client connection, this will do nothing.
 */
$burndownGenerator->addBoard('My Board');
/*
 * Add one or more Todo List with the list full name.
 * If you have add more than one board and some of the boards you've  add
 * contain lists with the same name, you can specify the board name as second parameter.
 * addTodoList('Todo', 'My second Board');
 *
 */
$burndownGenerator->addTodoList('Todo');
/*
 * Add one or more Work In Progress list with the list full name.
 */
$burndownGenerator->addWipList('In Progress');
/*
 * Add one or more Done list with the list full name.
 */
$burndownGenerator->addDoneList('To Validate 1');
$burndownGenerator->addDoneList('To Validate 2');

/*
 * Generate the Story Point Burndown by passing the sprint as agument.
 * This method will return a StoryPointBurndown Object
 */
$burndown = $burndownGenerator->getStoryPointBurndown($sprint);

/*
 * Call the generate() method to get an array representing your burndown
 */
 echo $burndown->generate();
```

[Read more about usage in the doc.](./doc/index.md)

Usage with Trello
-----------------

[](#usage-with-trello)

TrelloBurnown generate a burndown chart base on story points you indicate in each card name.

In order to be read by the burndow generator, story points must be include in the card name, surrounded by parenthesis.

Examples :

- `(3) Card Name` will return `3`
- `   (2) Card Name` will return `2`
- `(1)      Card Name` will return `1`
- `(0.5) Card Name` will return `0.5`

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

[](#contributing)

Feel free to make any comments, file issues or make pull requests.

See  to run the lib and work on it.

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

[](#documentation)

[See more](./doc/index.md)

License
-------

[](#license)

`php-trello-burndow` is licensed under the MIT License - see the LICENSE file for details

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity49

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

Unknown

Total

1

Last Release

3679d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3866325?v=4)[Sébastien Le Gall](/maintainers/seblegall)[@seblegall](https://github.com/seblegall)

---

Top Contributors

[![seblegall](https://avatars.githubusercontent.com/u/3866325?v=4)](https://github.com/seblegall "seblegall (41 commits)")

---

Tags

Scrumtrelloburndown

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/seblegall-php-trello-burndown/health.svg)

```
[![Health](https://phpackages.com/badges/seblegall-php-trello-burndown/health.svg)](https://phpackages.com/packages/seblegall-php-trello-burndown)
```

###  Alternatives

[gitscrum-community-edition/laravel-gitscrum

GitScrum is a project to help developer team. Git + Scrum = Team More Productive

2.9k2.0k](/packages/gitscrum-community-edition-laravel-gitscrum)[gregoriohc/laravel-trello

A Laravel wrapper and facade package for the Trello API

3366.8k2](/packages/gregoriohc-laravel-trello)[sebwite/magento2-product-downloads

Magento 2.0 product download module

3912.7k](/packages/sebwite-magento2-product-downloads)[zizaco/lessy

Lessy is a simple and lean LESS compiler for Laravel

2116.7k](/packages/zizaco-lessy)

PHPackages © 2026

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