PHP code example of decole / planka-php-sdk
1. Go to this page and download the library: Download decole/planka-php-sdk 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/ */
decole / planka-php-sdk example snippets
use Planka\Bridge\PlankaClient;
use Planka\Bridge\TransportClients\Client;
eUri: 'http://192.168.1.101', // https://your.domain.com
port: 3000 // 443
);
$planka = new PlankaClient($config);
$planka->authenticate();
$result = $planka->project->list();
var_dump($result);