2017 © Pedro Peláez
 

library jira-api-restclient

JIRA REST API Client

image

chobie/jira-api-restclient

JIRA REST API Client

  • Thursday, February 8, 2018
  • by aik099
  • Repository
  • 21 Watchers
  • 189 Stars
  • 211,617 Installations
  • PHP
  • 18 Dependents
  • 0 Suggesters
  • 113 Forks
  • 40 Open issues
  • 2 Versions
  • 8 % Grown

The README.md

Jira REST API Client

CI, (*1)

You all know that Jira supports REST API, right? It can be very useful, for example, during automation job creation and notification sending., (*2)

This library will ensure unforgettable experience when working with Jira through REST API. Hope you'll enjoy it., (*3)

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., (*4)

The Versions

08/02 2018

dev-master

9999999-dev

JIRA REST API Client

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

api rest jira

27/07 2014

v1.0.0

1.0.0.0

JIRA REST API.

  Sources   Download

MIT

The Requires

  • php >=5.2.4

 

api rest jira