PHP code example of pxgamer / trello-php

1. Go to this page and download the library: Download pxgamer/trello-php 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/ */

    

pxgamer / trello-php example snippets


use pxgamer\Trello;

$trello = new Trello\Client('api_key', 'access_token');

// Returns a PHP array of boards that a user is a member of
$trello->getBoardsByUser($username);

// Returns an array of lists that are available on a board
$trello->getListsFromBoard($board_id);

// Returns an array of cards that are in a list
$trello->getCardsFromList($list_id);

// Returns an array of data about a specific card
$trello->getCard($card_id);

// Adds a card (ent:
$content = [
    'name'   => 'Card Title',
    'desc'   => 'Card Description... La la la.',
    'idList' => 'List Id',
    'pos'    => 'bottom',
    'due'    => '2017-01-27',
];

$trello->addCard($content);
bash
$ composer