gentle/bitbucket-api
PHP Bitbucket API wrapper (PHP 5.4+) using cURL and Buzz. Provides a simple client for interacting with Bitbucket endpoints, with full documentation and optional PHPUnit test suite. MIT licensed.
Provides functionality for interacting with an issue tracker. Authentication is necesary to access private issue tracker, to get more detailed information, to create and to update an issue.
{% include auth.md var_name="issue" class_ns="Repositories\Issues" %}
$issue->all($account_name, $repo_slug);
$issue->get($account_name, $repo_slug, 3);
bug in title:$issue->all($account_name, $repo_slug, array(
'limit' => 5,
'start' => 0,
'search' => 'bug'
));
$issue->create($account_name, $repo_slug, array(
'title' => 'dummy title',
'content' => 'dummy content',
'kind' => 'proposal',
'priority' => 'blocker'
));
$issue->update($account_name, $repo_slug, 5, array(
'title' => 'dummy title (edited)'
));
$issue->delete($account_name, $repo_slug, 5);
How can I help you explore Laravel packages today?