PHPackages                             pgrenaud/laravel-trello - 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. pgrenaud/laravel-trello

ActiveLibrary[API Development](/categories/api)

pgrenaud/laravel-trello
=======================

A Laravel wrapper and facade package for the Trello API

v1.0.0(4y ago)01.3kMITPHPPHP &gt;=7.4

Since Feb 4Pushed 4y agoCompare

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

READMEChangelogDependencies (4)Versions (4)Used By (0)

Laravel 5 Trello API wrapper
============================

[](#laravel-5-trello-api-wrapper)

[![Scrutinizer Code Quality](https://camo.githubusercontent.com/003098985457eca6b0e77e1fff5da444561dc7aaff4bc7f4b552bbeb5a2c8fb0/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f677265676f72696f68632f6c61726176656c2d7472656c6c6f2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/gregoriohc/laravel-trello/?branch=master)

A simple Laravel 5 package that wraps [Trello](https://trello.com) API.

Requirements
------------

[](#requirements)

- PHP 5.4 or greater

Installation
------------

[](#installation)

You can install the package using the [Composer](https://getcomposer.org/) package manager running this command in your project root:

```
composer require gregoriohc/laravel-trello
```

Laravel
-------

[](#laravel)

The package includes a service providers and a facade for easy integration and a nice syntax for Laravel.

Firstly, add the `Gregoriohc\LaravelTrello\TrelloServiceProvider` provider to the providers array in `config/app.php`

```
'providers' => [
  ...
  Gregoriohc\LaravelTrello\TrelloServiceProvider::class,
],
```

and then add the facade to your `aliases` array

```
'aliases' => [
  ...
  'Trello' => Gregoriohc\LaravelTrello\Facades\Wrapper::class,
],
```

### Configuration

[](#configuration)

Publish the configuration file with:

```
php artisan vendor:publish --provider="Gregoriohc\LaravelTrello\TrelloServiceProvider"
```

Head into the file and configure the keys and defaults you'd like the package to use.

Usage
-----

[](#usage)

#### Creating a basic card

[](#creating-a-basic-card)

```
$card = Trello::manager()->getCard();
$card
    ->setBoardId(Trello::getDefaultBoardId())
    ->setListId(Trello::getDefaultListId())
    ->setName('Example card')
    ->setDescription('Description of the card')
    ->save();
```

#### Creating a more complex card

[](#creating-a-more-complex-card)

```
// Create the card
$card = Trello::manager()->getCard();
$card
    ->setBoardId(Trello::getDefaultBoardId())
    ->setListId(Trello::getDefaultListId())
    ->setName('Example card')
    ->setDescription('Description of the card')
    ->save();

// Add a checklist with one item
$checklist = Trello::manager()->getChecklist();
$checklist
    ->setCard($card)
    ->setName('Example list')
    ->save();
Trello::checklist()->items()->create($checklist->getId(), 'Example checklist item');

// Attach an image using a url
Trello::card()->attachments()->create($card->getId(), ['url' => 'http://lorempixel.com/400/200/']);
```

#### More examples

[](#more-examples)

For more examples of usage, please see the original PHP Trello API package documentation:

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

[](#contributing)

If you're having problems, spot a bug, or have a feature suggestion, please log and issue on Github. If you'd like to have a crack yourself, fork the package and make a pull request.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 66.7% 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 ~1128 days

Total

3

Last Release

1493d ago

Major Versions

0.3 → v1.0.02022-04-10

PHP version history (2 changes)0.2PHP &gt;=5.4.0

v1.0.0PHP &gt;=7.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/444e90b119bc6cbb2c1c259b47fa39f9271112043ae29e9c03cd8134cd98ee30?d=identicon)[pgrenaud](/maintainers/pgrenaud)

---

Top Contributors

[![gregoriohc](https://avatars.githubusercontent.com/u/566841?v=4)](https://github.com/gregoriohc "gregoriohc (6 commits)")[![pgrenaud](https://avatars.githubusercontent.com/u/10713979?v=4)](https://github.com/pgrenaud "pgrenaud (2 commits)")[![danielfaulknor](https://avatars.githubusercontent.com/u/334835?v=4)](https://github.com/danielfaulknor "danielfaulknor (1 commits)")

---

Tags

apilaravelpackagetrellofacade

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/pgrenaud-laravel-trello/health.svg)

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

###  Alternatives

[andreaselia/laravel-api-to-postman

Generate a Postman collection automatically from your Laravel API

1.0k586.2k3](/packages/andreaselia-laravel-api-to-postman)[gregoriohc/laravel-trello

A Laravel wrapper and facade package for the Trello API

3366.8k2](/packages/gregoriohc-laravel-trello)[joisarjignesh/bigbluebutton

BigBlueButton Server API Library for Laravel

162145.5k1](/packages/joisarjignesh-bigbluebutton)[bmatovu/laravel-mtn-momo

Laravel MTN MOMO integration.

14310.9k](/packages/bmatovu-laravel-mtn-momo)[claude-php/claude-php-sdk-laravel

Laravel integration for the Claude PHP SDK - Anthropic Claude API

5010.8k](/packages/claude-php-claude-php-sdk-laravel)[vinelab/api-manager

Laravel API Manager Package - beatify and unify your responses with the least effort possible.

392.1k](/packages/vinelab-api-manager)

PHPackages © 2026

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