tschwemley/trello-php-api

There is no license information available for the latest version (dev-master) of this package.

A php wrapper for working with the Trello API

dev-master 2015-01-27 15:08 UTC

This package is not auto-updated.

Last update: 2025-07-01 07:15:45 UTC


README

A PHP wrapper for working with the Trello API.

Requirements

Installation

This package can be installed as a stand alone or with composer.

If using Composer add the following to your project composer.json:

"require": {
	...
	"tschwemley/trello-php-api": "dev-master"
}

Finally, update Composer:

composer update

Usage

After obtaining an authentican token you may make authenticated calls by using the following method:

$trello = new tschwemley\trello\Trello(array(
  'clientKey'    => CLIENT_KEY_HERE
  'clientSecret' => CLIENT_SECRET_HERE
);

$result = $trello->apiCall(array('boards', '4d5ea62fd76aa1136000000c'));

For more detailed examples about obtaining OAuth verification please check the OAuth examples under the examples folder.

Getting Help

If you need help please contact me at me@tylerschwemley.com