定制 chobie/jira-api-restclient 二次开发

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

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

chobie/jira-api-restclient

最新稳定版本:v2.0.0-B1

Composer 安装命令:

composer require chobie/jira-api-restclient

包简介

JIRA REST API Client

README 文档

README

CI codecov

You all know that Jira supports REST API, right? It can be very useful, for example, during automation job creation and notification sending.

This library will ensure unforgettable experience when working with Jira through REST API. Hope you'll enjoy it.

Usage

<?php
use chobie\Jira\Api;
use chobie\Jira\Api\Authentication\Basic;
use chobie\Jira\Issues\Walker;

$api = new Api(
    'https://your-jira-project.net',
    new Basic('yourname', 'password')
);

$walker = new Walker($api);
$walker->push(
	'project = "YOURPROJECT" AND (status != "closed" AND status != "resolved") ORDER BY priority DESC'
);

foreach ( $walker as $issue ) {
    var_dump($issue);
    // Send custom notification here.
}

Installation

php composer.phar require chobie/jira-api-restclient ^2.0@dev

Requirements

License

Jira REST API Client is released under the MIT License. See the bundled LICENSE file for details.

统计信息

  • 总下载量: 715.47k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 218
  • 点击次数: 1
  • 依赖项目数: 19
  • 推荐数: 0

GitHub 信息

  • Stars: 217
  • Watchers: 18
  • Forks: 123
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2013-06-30