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 querying information about groups, creating new ones, updating memberships, and deleting them.
{% include auth.md var_name="groups" class_ns="Groups" %}
$groups->get($account_name);
$groups->get($account_name, array(
'group' => 'repo_name/administrators'
));
$groups->create($account_name, 'testers');
$groups->update($account_name, 'testers', array(
'accountname' => 'gentlero',
'name' => 'Dummy group'
));
$groups->delete($account_name, 'testers');
How can I help you explore Laravel packages today?