/toggl-php-sdk

PHP SDK for the Toggl API

Primary LanguagePHPGNU General Public License v2.0GPL-2.0

Toggl PHP SDK

Provides a re-usable PHP library for interacting with the Toggl time tracking system's API.

Requirements

  • PHP 5.3 or higher
  • cURL extension
  • JSON extension
  • PHPUnit (for unit testing)

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();
?>

License

The Toggl PHP SDK is dual licensed under the MIT and GPLv2 licenses.

Unit Tests

To run the unit tests included with the SDK, you must have PHPUnit installed. From the Toggl SDK directory, run phpunit tests to run all tests.