Beispiel #1
0
<?php

/**
 * This is an example.
 * Here you can check how to get a full list of issues registered in your system.
 * 
 * @author José A. Muriano  <*****@*****.**>
 * 
 */
require_once '../vendor/autoload.php';
use PHPRedmineAPI\RedmineAPI;
$api = new RedmineAPI('https://185.8.244.222', 'xml', true);
$issues = $api->getIssues();
foreach ($issues as $thisIssue) {
    echo $thisIssue->subject;
    echo '<br>' . PHP_EOL;
}