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.
An invitation is a request sent to an external email address to participate one or more of an account's groups. Any user with admin access to the account can invite someone to a group.
{% include auth.md var_name="users" class_ns="Users" %}
$users->invitations()->all($account_name);
$users->invitations()->email($account_name, 'dummy@example.com');
$users->invitations()->group($account_name, 'john', 'testers', 'dummy@example.com');
An invitation is a request sent to an external email address to participate one or more of an account's groups.
$users->invitations()->create($account_name, 'john', 'testers', 'dummy@example.com');
$users->invitations()->deleteByEmail($account_name, 'dummy@example.com');
$users->invitations()->deleteByGroup($account_name, 'john', 'testers', 'dummy@example.com');
How can I help you explore Laravel packages today?