意大利面绿/bitbucket-api-bundle

Bitbucket API 客户端扩展包

安装: 128

依赖者: 0

建议者: 0

安全: 0

星标: 0

关注者: 0

分支: 1

类型:symfony-bundle

1.2 2024-08-01 04:50 UTC

This package is auto-updated.

Last update: 2024-09-01 05:17:00 UTC


README

这是一个用于 Bitbucket API 客户端的 Symfony 扩展包 (https://bitbucket.org/gentlero/bitbucket-api).

配置

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

访问服务

通过容器中的服务 ID

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

Symfony 3.3+ 自动注入

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