27/01
2015
A php wrapper for working with the Trello API
A PHP wrapper for working with the Trello API., (*1)
This package can be installed as a stand alone or with composer., (*2)
If using Composer add the following to your project composer.json:, (*3)
"require": { ... "tschwemley/trello-php-api": "dev-master" }
Finally, update Composer:, (*4)
composer update
After obtaining an authentican token you may make authenticated calls by using the following method:, (*5)
$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., (*6)
If you need help please contact me at me@tylerschwemley.com, (*7)