featvalue / php-sdk
There is no license information available for the latest version (0.0.17) of this package.
FeatValue PHP SDK
0.0.17
2022-08-18 10:40 UTC
Requires
- php: ^8.0
- ext-curl: *
- ext-json: *
This package is auto-updated.
Last update: 2026-02-18 17:56:46 UTC
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.