Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

storz/backlog-v2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Backlog-v2

this is backlog api v2 wrapper.

Get started

Install the "atomita/backlog-v2" using the composer.

require {composer install dir} . "/vendor/autoload.php";

use \atomita\Backlog;
use \atomita\BacklogException;

$backlog = new Backlog('space-name', 'api-key');
try{
    $space = $backlog->space->get();
    var_dump($space);

    $comment = $backlog->issues->param('issue id')->comments->post(['content' => 'comment message']));
    var_dump($comment);
}
catch(BacklogException $e){
    // error
}

This is released under the LGPLv3, see LICENSE.

About

this is backlog api v2 wrapper.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%