php-trello-api icon indicating copy to clipboard operation
php-trello-api copied to clipboard

A simple Object Oriented wrapper for the Trello API, written in PHP5.

Results 57 php-trello-api issues
Sort by recently updated
recently updated
newest added

Added functionality to support update of card member, as well as update and creation of checklist items.

Hi Christian, So I am using this wrapper to automate Trello cards on an internal platform. One page lists actions and triggers that need to take place or Trello cards...

question

Trello::card()->attachments()->create($card->getId(), ['file' => 'C:/Users/Admin/Desktop/1abc.png']);

question

How can I create a copy of a $card in the same list?

question

with Symfony5 anad GuzzleHttp 5.3, completely working and tested

In webhook handle I can't get the "action" data. I've checked this`$request->getContent()` it has data But, in this in code `$request->get('action')` return null I try it this way I got...

when i send create card request i given below error ``` Argument 1 passed to Symfony\Component\EventDispatcher\EventDispatcher::dispatch() must be an object, string given, called in vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php on line 40 ``` i...

I added endpoint to be able to get list of boards of organization [link to api](https://developers.trello.com/advanced-reference/organization#get-1-organizations-idorg-or-name-boards) this commit is including endpoint, extended documentation and tests

Hi there, I want to update a checklist item with : ```php $client = new Client(); $client->authenticate(env('TRELLO_API_KEY'), env('TRELLO_API_TOKEN'), Client::AUTH_URL_CLIENT_ID); $card = $client->cards()->show($report_category->trello_card_id); $checklistId = $card['idChecklists'][0]; $checklists = $client->card()->checklists()->all($card['id']); $checkItemId =...