Best laravel framework open-source packages.

Trello php

Add new card to Trello with PHP
Updated 2 years ago

Trello.php

Add new card to Trello with PHP.

Example of usage:

include "Trello.php";

// Setup
$trello = new Trello;
$trello->setKey('my_key');
$trello->setToken('my_token');
$trello->setListId('my_list_id');

// Add new card
$result = $trello->addCard([
	'name' => 'Test',
	'desc' => 'This is a description!',
	'urlSource' => 'https://vandaw.com'
]);

print_r($result);
Tags trello php