cocciagialla/bitbucket-api-bundle

A bundle for the Bitbucket API Client

Installs: 201

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Type:symfony-bundle

1.2 2024-08-01 04:50 UTC

This package is auto-updated.

Last update: 2025-01-31 00:30:48 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;
}