danielpanzella / bitbucket-api-bundle
A bundle for the Bitbucket API Client
Installs: 3 122
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- gentle/bitbucket-api: ^1.0
This package is not auto-updated.
Last update: 2025-03-30 04:43:23 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; }