dereuromark/jira-api-restclient
最新稳定版本:1.1.0
Composer 安装命令:
composer require dereuromark/jira-api-restclient
包简介
Jira REST API Client
README 文档
README
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
- Jira REST API Documents: https://docs.atlassian.com/jira/REST/latest/
<?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
其他信息
- 授权协议: MIT
- 更新时间: 2022-10-06