PHPackages                             pxgamer/trello-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. pxgamer/trello-php

Abandoned → [stevenmaguire/trello-php](/?search=stevenmaguire%2Ftrello-php)Library[API Development](/categories/api)

pxgamer/trello-php
==================

A simple PHP wrapper for utilising the Trello api.

v1.3.0(7y ago)3291↓100%1[1 issues](https://github.com/owenvoke/trello-php/issues)MITPHPPHP ^7.2

Since Jan 27Pushed 7y ago1 watchersCompare

[ Source](https://github.com/owenvoke/trello-php)[ Packagist](https://packagist.org/packages/pxgamer/trello-php)[ RSS](/packages/pxgamer-trello-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (8)Used By (0)

trello-php
==========

[](#trello-php)

[![Latest Version on Packagist](https://camo.githubusercontent.com/70e7f330ce5edea60a65dfc33058cca3f59eaca0a4c1a7c9a6c92bf58fb65b6f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f707867616d65722f7472656c6c6f2d7068702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pxgamer/trello-php)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/67ff498baa4bb99869b6f52d384ec1a5030e6eae12d9d6078c539a8b1cc3fb31/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f707867616d65722f7472656c6c6f2d7068702f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/pxgamer/trello-php)[![Style CI](https://camo.githubusercontent.com/c2d8de245496a06ce378c37cd9f94f383605c420dcf454a3cc644aaad058b748/68747470733a2f2f7374796c6563692e696f2f7265706f732f38303230383730342f736869656c64)](https://styleci.io/repos/80208704)[![Code Coverage](https://camo.githubusercontent.com/cf39e3da09dd5033e2a8f6b457478412ae562d398a996a3f1c09af3ce756c12f/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f707867616d65722f7472656c6c6f2d7068702e7376673f7374796c653d666c61742d737175617265)](https://codecov.io/gh/pxgamer/trello-php)[![Total Downloads](https://camo.githubusercontent.com/100372c1889389e1537a4827a43fd0418a013a71b2a23cc13324a68cb1a885db/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f707867616d65722f7472656c6c6f2d7068702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pxgamer/trello-php)

A simple PHP wrapper for utilising the [Trello](https://developers.trello.com) api.

Install
-------

[](#install)

Via Composer

```
$ composer require pxgamer/trello-php
```

Usage
-----

[](#usage)

```
use pxgamer\Trello;

$trello = new Trello\Client('api_key', 'access_token');
```

*All functions return associative arrays.*

```
// Returns a PHP array of boards that a user is a member of
$trello->getBoardsByUser($username);
```

```
// Returns an array of lists that are available on a board
$trello->getListsFromBoard($board_id);
```

```
// Returns an array of cards that are in a list
$trello->getCardsFromList($list_id);
```

```
// Returns an array of data about a specific card
$trello->getCard($card_id);
```

```
// Adds a card (requires a list ID to be specified)
// Example Content:
$content = [
    'name'   => 'Card Title',
    'desc'   => 'Card Description... La la la.',
    'idList' => 'List Id',
    'pos'    => 'bottom',
    'due'    => '2017-01-27',
];

$trello->addCard($content);
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Testing
-------

[](#testing)

Testing requires a [Trello API key](https://trello.com/app-key) in order to access my public boards.

```
$ export TRELLO_API_KEY=
$ export TRELLO_ACCESS_TOKEN=
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) and [CODE\_OF\_CONDUCT](.github/CODE_OF_CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [pxgamer](https://github.com/pxgamer)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~159 days

Recently: every ~129 days

Total

6

Last Release

2593d ago

PHP version history (4 changes)v1.0.0PHP &gt;=5.5.0

v1.1.0PHP &gt;=5.6.0

v1.2.0PHP ^7.1

v1.3.0PHP ^7.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1899334?v=4)[Owen Voke](/maintainers/owenvoke)[@owenvoke](https://github.com/owenvoke)

---

Top Contributors

[![owenvoke](https://avatars.githubusercontent.com/u/1899334?v=4)](https://github.com/owenvoke "owenvoke (50 commits)")

---

Tags

phpphp-wrappertrellotrello-php

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/pxgamer-trello-php/health.svg)

```
[![Health](https://phpackages.com/badges/pxgamer-trello-php/health.svg)](https://phpackages.com/packages/pxgamer-trello-php)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M474](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M270](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M186](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M33](/packages/facebook-php-business-sdk)[microsoft/microsoft-graph

The Microsoft Graph SDK for PHP

65723.5M95](/packages/microsoft-microsoft-graph)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
