Toggl API PHP SDK

1.0.3 2018-08-27 08:19 UTC

This package is not auto-updated.

Last update: 2024-09-29 03:36:36 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

安装

使用composer安装此包

composer require brainfab/toggl_sdk

使用示例

require_once 'vendor/autoload.php';

use Brainfab\Toggl\Toggl;

$apiKey = 'your api key';

$toggl = new Toggl($apiKey);
$account = $toggl->account()->me();

echo $account->fullname;