chobie/jira-api-restclient
PHP client for Jira’s REST API. Provides simple authentication, request handling, and endpoints for issues, projects, users, comments, attachments, workflows, and more—useful for integrating Jira operations into your apps, scripts, or automation jobs.
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 ^2.0@dev
Jira REST API Client is released under the MIT License. See the bundled LICENSE file for details.
How can I help you explore Laravel packages today?