budgetlens/copernica-rest-api-client
最新稳定版本:v3.0.3
Composer 安装命令:
composer require budgetlens/copernica-rest-api-client
包简介
Copernica Rest API client
关键字:
README 文档
README
Requirements
To use the Copernica Rest API client, the following things are required:
- Generate your access_token
Installation
Install package using composer
composer require budgetlens/copernica-rest-api-client
Getting started
$accessToken = 'your-token'; $client = new \Budgetlens\CopernicaRestApi\Client($accessToken);
If required additional configuration can be added by supplying an additional config
class MyConfig implements Budgetlens\CopernicaRestApi\Contracts\Config { public function getEndpoint(): string { return 'https://api.copernica.com/v3'; } public function getMiddleware(): array { return $this->middleware; } public function addMiddleware($middleware) { $this->middleware[] = $middleware; } public function getTimeout(): int { return 180; } public function getUserAgent(): string { return ''; } } $client->setConfig($config);
Examples
for examples see "tests folder"
统计信息
- 总下载量: 928
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-02-18