Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Atlassian Python Api | 1,064 | 5 | 44 | 5 days ago | 239 | May 25, 2022 | 178 | apache-2.0 | Python | |
Atlassian Python REST API wrapper | ||||||||||
Jira Ruby | 621 | 1,045 | 61 | 4 months ago | 44 | January 23, 2021 | 82 | mit | Ruby | |
A Ruby gem for the JIRA REST API | ||||||||||
Php Jira Rest Client | 487 | 32 | 20 | 21 days ago | 137 | October 03, 2022 | 12 | other | PHP | |
PHP classes interact Jira with the REST API. | ||||||||||
Node Jira Client | 393 | 86 | 76 | 7 months ago | 57 | March 08, 2022 | 33 | mit | JavaScript | |
A Node.js wrapper for the Jira REST API | ||||||||||
Node Jira | 379 | 183 | 45 | 5 years ago | 23 | September 06, 2014 | 76 | JavaScript | ||
A nodejs wrapper for the JIRA REST API | ||||||||||
Jira Connector | 360 | 90 | 63 | 3 years ago | 47 | December 18, 2019 | 29 | mit | JavaScript | |
NodeJS Wrapper for the Jira REST API | ||||||||||
Jiraps | 281 | 9 months ago | 112 | mit | PowerShell | |||||
PowerShell module to interact with Atlassian JIRA | ||||||||||
Jira Api Restclient | 219 | 53 | 14 | 8 months ago | 1 | July 27, 2014 | 50 | mit | PHP | |
php JIRA REST API | ||||||||||
Camunda Excamad | 217 | 2 months ago | 18 | gpl-3.0 | Vue | |||||
External camunda admin portal, which make live in multi-camunda`s environment much easy #camunda | ||||||||||
Jira.js | 204 | 17 | 2 days ago | 71 | January 09, 2023 | 9 | mit | TypeScript | ||
A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API |
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.
<?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.
}
php composer.phar require chobie/jira-api-restclient ^[email protected]
Jira REST API Client is released under the MIT License. See the bundled LICENSE file for details.