danielpanzella / bitbucket-api-bundle
A bundle for the Bitbucket API Client
Package info
github.com/danielpanzella/bitbucket-api-bundle
Type:symfony-bundle
pkg:composer/danielpanzella/bitbucket-api-bundle
v1.1
2017-07-17 00:26 UTC
Requires
- gentle/bitbucket-api: ^1.0
This package is not auto-updated.
Last update: 2026-03-15 09:32:10 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; }