PHP code example of abul / jira-php-client

1. Go to this page and download the library: Download abul/jira-php-client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

abul / jira-php-client example snippets



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);
}

php composer.phar