An open API service indexing awesome lists of open source software.

https://github.com/thomasklein/mite.php

PHP class providing methods to easily communicate with the mite.api
https://github.com/thomasklein/mite.php

Last synced: 10 months ago
JSON representation

PHP class providing methods to easily communicate with the mite.api

Awesome Lists containing this project

README

          

PHP class providing methods to easily communicate with the mite.api

mite (http://mite.yo.lk/en) is a sleek time tracking tool for teams and freelancers.

Example usage:

````php
require_once("path_to_class/mite.php");

$o_mite = mite::getInstance();
$o_mite->init(,, 'my_app_name/v1.2.3');
try {
$o_responseXML = $o_mite->sendRequest('get', '/time_entries.xml');
} catch (Exception $e) {
echo "

" . $e->getMessage() . "

";
}
````