danielpanzella/bitbucket-api-bundle

A bundle for the Bitbucket API Client

Installs: 2 962

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 1

Type:symfony-bundle

v1.1 2017-07-17 00:26 UTC

This package is not auto-updated.

Last update: 2024-04-28 00:17:46 UTC


README

A Symfony Bundle for the Bitbucket API Client (https://bitbucket.org/gentlero/bitbucket-api).

Configuration

bitbucket_api:
    client_id: < OAuth2 Client ID >
    client_secret: < OAuth2 Client Secret >

Access the Service:

By Service ID from the container

$this->get('Bitbucket\API\Api');

Symfony 3.3+ Autowiring

public function __construct(\Bitbucket\API\Api $bitbucketApi)
{
    $this->bitbucketApi = $bitbucketApi;
}