Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atomita/backlog-v2
this is backlog api v2 wrapper.
https://github.com/atomita/backlog-v2
Last synced: 3 days ago
JSON representation
this is backlog api v2 wrapper.
- Host: GitHub
- URL: https://github.com/atomita/backlog-v2
- Owner: atomita
- License: lgpl-3.0
- Created: 2014-08-13T14:36:48.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-19T02:36:33.000Z (almost 2 years ago)
- Last Synced: 2024-09-18T03:51:25.759Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 18
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Backlog-v2
==========this is [backlog api v2](https://developer.nulab.com/ja/docs/backlog/) wrapper with API Key.
## Get started
Install the "atomita/backlog-v2" using the composer.
```php
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.