PHP code example of bartosz-maciaszek / php-rtm

1. Go to this page and download the library: Download bartosz-maciaszek/php-rtm library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

bartosz-maciaszek / php-rtm example snippets




use Rtm\Rtm;

$rtm = new Rtm;
$rtm->setApiKey('Your API key');
$rtm->setSecret('Your secret');
$rtm->setAuthToken('Your Auth Token from RTM');

$taskService = $rtm->getService(Rtm::SERVICE_TASKS);
$taskList = $taskService->getList();

"bartosz-maciaszek/php-rtm": "dev-master"

git clone git://github.com/bartosz-maciaszek/php-rtm.git