cocciagialla / bitbucket-api-bundle
A bundle for the Bitbucket API Client
Package info
github.com/cocciagialla/bitbucket-api-bundle
Type:symfony-bundle
pkg:composer/cocciagialla/bitbucket-api-bundle
1.2
2024-08-01 04:50 UTC
Requires
- gentle/bitbucket-api: ^1.0
This package is auto-updated.
Last update: 2026-03-01 00:58:16 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; }