Fork Me on GitHub

Toggl PHP SDK

PHP SDK for the Toggl API

Download this project as a .zip file Download this project as a tar.gz file

Requirements

Usage

<?php
$api_token = '00000000000000000000000000000000'; // Valid Toggl.com API token
$connection = new TogglConnection($api_token);
$time_entry = TogglTimeEntry::load($connection, 1); // Load time entry #1.
$time_entry->description = 'New description for #1.'
$time_entry->save();
?>

Links