意大利面绿 / bitbucket-api-bundle
Bitbucket API 客户端扩展包
1.2
2024-08-01 04:50 UTC
Requires
- gentle/bitbucket-api: ^1.0
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; }