delphiki/toggl-plan-client

There is no license information available for the latest version (1.0.1) of this package.

A simple PHP client for the Toggl Plan API

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/delphiki/toggl-plan-client

1.0.1 2022-01-11 12:55 UTC

This package is auto-updated.

Last update: 2025-10-11 21:59:08 UTC


README

A simple PHP client for the Toggl Plan API.

Installation

composer require delphiki/toggl-plan-client

Usage

You must register an application to retrieve your client ID & secret: https://developers.plan.toggl.com/applications

$togglPlanClient = new TogglPlanClient(
    'USERNAME',
    'PASSWORD',
    'CLIENT ID',
    'CLIENT SECRET',
);

$togglPlanClient->getMe();
// ...