featvalue/php-sdk
最新稳定版本:0.0.17
Composer 安装命令:
composer require featvalue/php-sdk
包简介
FeatValue PHP SDK
README 文档
README
FeatValue PHP SDK
This is the PHP SDK of FeatValue, a collaboration tool by a coding project GmbH.
Installation
Install using composer:
composer require featvalue/php-sdk
Getting started
Create a new API instance using your API key and token:
$api = new \FeatValue\Api(<YOUR_API_KEY>, <YOUR_TOKEN>);
If you want to test locally, add a host as a third parameter:
$api = new \FeatValue\Api(<YOUR_API_KEY>, <YOUR_TOKEN>, "http://localhost/api");
Usage
Get a task:
$task = $api->get("/tasks/1");
Get all tasks:
$tasks = $api->tasks();
Filter tasks by status:
$tasks = $api->tasks(["status" => "OPEN"]);
You can access the complete API documentation here.
统计信息
- 总下载量: 6.15k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2022-05-23