library jira-php-client
A PHP library making interaction with JIRA simpler.
abul/jira-php-client
A PHP library making interaction with JIRA simpler.
- Tuesday, July 25, 2017
- by abul_wcse
- Repository
- 1 Watchers
- 0 Stars
- 12 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 3 Versions
- 0 % Grown
jira-api
JIRA supports REST API, It can be very useful, for example, during automation job creation and notification sending., (*1)
Usage
- JIRA Rest API Documents: https://docs.atlassian.com/jira/REST/latest/
<?php
use Jira\Client;
use Jira\Authentication\BasicAuthenticationService
$api = new Client(
'https://your-jira-project.net',
new BasicAuthenticationService('yourname', 'password')
);
$issues = $api->get('issue')->search('project = "YOURPROJECT" AND (status != "closed" AND status != "resolved") ORDER BY priority DESC');
foreach ( $issues as $issue ) {
var_dump($issue);
}
Installation
php composer.phar require abul/jira-php-client ^0.1@dev
Requirements
License
JIRA PHP Client is released under the MIT License. See the bundled LICENSE file for details., (*2)
dev-master
9999999-dev
A PHP library making interaction with JIRA simpler.
Sources
Download
MIT
The Requires
by
Abul hassan
0.2
0.2.0.0
A PHP library making interaction with JIRA simpler.
Sources
Download
MIT
The Requires
by
Abul hassan
0.1
0.1.0.0
A PHP library making interaction with JIRA simpler.
Sources
Download
MIT
The Requires
by
Abul hassan