dereuromark / jira-api-restclient
Jira REST API Client
Installs: 13 650
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 123
Open Issues: 1
Requires
- php: >=7.4.0
Requires (Dev)
- fig-r/psr2r-sniffer: dev-master
- phpspec/prophecy: ^1.10
- phpstan/phpstan: ^1.0.0
- phpunit/phpunit: ^9.5
- yoast/phpunit-polyfills: ^1.0
This package is auto-updated.
Last update: 2024-11-06 18:08:34 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 experience 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 Jira\Api; use Jira\Api\Authentication\Basic; use 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 dereuromark/jira-api-restclient
Requirements
License
Jira REST API Client is released under the MIT License. See the bundled LICENSE file for details.