PHP code example of testmonitor / teams-client

1. Go to this page and download the library: Download testmonitor/teams-client 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/ */

    

testmonitor / teams-client example snippets




$teams = new \TestMonitor\Teams\Client('https://webhook.url/');

$card = new \TestMonitor\Teams\Resources\Card;

$card->addElement(
    new \TestMonitor\Teams\Resources\Card\Elements\TextBlock('Simple heading')
);

$teams->postMessage($card);

$card = new \TestMonitor\Teams\Resources\Card;

$title = new \TestMonitor\Teams\Resources\Card\Elements\TextBlock('Simple heading');
$facts = new \TestMonitor\Teams\Resources\Card\Elements\FactSet(
    new \TestMonitor\Teams\Resources\Card\Elements\Fact('Status', 'Completed'),
    new \TestMonitor\Teams\Resources\Card\Elements\Fact('Category', 'Feature request'),
);
$action = new \TestMonitor\Teams\Resources\Card\Actions\OpenUrl('https://www.testmonitor.com/');

$card->addElement($title)
     ->addElement($facts)
     ->addAction($action);

$teams->postMessage($card);