dereuromark/jira-api-restclient 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

dereuromark/jira-api-restclient

最新稳定版本:1.1.0

Composer 安装命令:

composer require dereuromark/jira-api-restclient

包简介

Jira REST API Client

README 文档

README

CI PHPStan Latest Stable Version Minimum PHP Version License

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 Jira\Api;
use Jira\Api\Authentication\Basic;
use 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 dereuromark/jira-api-restclient

Requirements

License

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

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 123
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-10-06