jpastoor / jira-api-restclient
JIRA REST API Client
v2.0.0
2015-12-27 18:58 UTC
Requires
- php: >=5.3.0
Requires (Dev)
- phpunit/phpunit: 4.1.*
This package is auto-updated.
Last update: 2024-10-09 02:16:58 UTC
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 expirience 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 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.