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

Installs: 59

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/tschwemley/trello-php-api

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

This package is not auto-updated.

Last update: 2026-01-27 09:59:32 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