dev-master
9999999-devJIRA REST API Client
MIT
The Requires
- php >=5.3.0
The Development Requires
api rest jira
v1.0.0
1.0.0.0JIRA REST API.
MIT
The Requires
- php >=5.2.4
api rest jira
JIRA REST API Client
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)
<?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., (*4)
JIRA REST API Client
MIT
api rest jira
JIRA REST API.
MIT
api rest jira