定制 seblegall/php-trello-burndown 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

seblegall/php-trello-burndown

Composer 安装命令:

composer require seblegall/php-trello-burndown

包简介

A Trello based burndown generator for SCRUM

README 文档

README

Twitter GitHub license Build Status Code Coverage Scrutinizer Code Quality

A PHP Scrum burndown generator based on Trello API.

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

Burndown

Requirements

  • PHP > 7.0
  • Composer

Installation

Using composer :

$ composer require seblegall/php-trello-burndown

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.

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

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

See https://github.com/seblegall/php-trello-burndown-dev-env to run the lib and work on it.

Documentation

See more

License

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

统计信息

  • 总下载量: 18
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-06-02

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固