tschwemley / trello-php-api

A PHP wrapper for working with the Trello API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

trello-php-API

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

About

A PHP wrapper for working with the Trello API

License:MIT License


Languages

Language:PHP 100.0%