Skip to content
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.

silinternational/trello-php-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⛔️ This repository is no longer maintained. ⛔️

trello-php-client

PHP client to interact with the Trello API.

We're slowly building out this client as we need the functionality. Initially we only need it for adding accounts to organizations.

This client is built on top of Guzzle, the PHP HTTP Client. Guzzle has a simple way to create API clients by describing the API in a Swagger-like format without the need to implement every method yourself. So adding support for more Trello APIs is relatively simple. If you want to submit a pull request to add another feature, please do. If you don't know how to do that, ask us and we might be able to add it in for you.

Trello API Docs

https://trello.com/docs/

Trello API Authentication

Trello uses a key/token pair to authenticate for API calls. You can get a key/secret at https://trello.com/1/appKey/generate

Install

Installation is simple with Composer. Add "silinternational/trello-php-client": "dev-master" to your composer.json file and update.

Usage

Example:

<?php

use Trello\Organization;

$org = new Organization([
  'key' => '1234567890',
  'token' => 'aasddfffds',
]);

$user = $org->addMember([
    'idOrg' => '5519vgdgh561a4a4b51154123b',
    'email' => 'testuser@domain.org',
    'fullName' => 'Test User',
]);

echo $user['id'];
// 552bfa4aadda3e05254317k

Guzzle Service Client Notes