Skip to content

JoeShiels1/YouTrack

 
 

Repository files navigation

Youtrack API wrapper

General classes to communicate with the YouTrack API and execute some commands. Handles login, communication, parses YouTrack responses, and executes commands by project and issue ID. Fetches issues as nice Issue entities.

Usage:

require('src/YouTrack/YouTrackCommunicator.php');
require('vendor/autoload.php');


$client = new Buzz\Browser;
$client->setClient(new Buzz\Client\Curl());

$api = new \YouTrack\YouTrackCommunicator($client, array(
    'uri' => 'http://your.youtrack.base',
    'username' => 'your_api_user',
    'password' => 'your_api_password'
));

$myIssue = $api->getIssue('MYPRJ-1');
var_dump($myIssue);

$api->executeCommands($myIssue, ['State', 'Built'], 'I just closed this automagically.');

For more info on what commands you can use, check the YouTrack docs:

About

General classes to communicate with the YouTrack API

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%