{"id":21846079,"url":"https://github.com/owenvoke/trello-php","last_synced_at":"2025-04-14T13:22:56.960Z","repository":{"id":57046117,"uuid":"80208704","full_name":"owenvoke/trello-php","owner":"owenvoke","description":"A simple PHP wrapper for utilising the Trello api.","archived":false,"fork":false,"pushed_at":"2019-04-02T14:41:25.000Z","size":41,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T02:38:29.569Z","etag":null,"topics":["php","php-wrapper","trello","trello-php"],"latest_commit_sha":null,"homepage":"https://packagist.org/packages/pxgamer/trello-php","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/owenvoke.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-27T13:17:30.000Z","updated_at":"2021-03-25T08:50:15.000Z","dependencies_parsed_at":"2022-08-24T03:40:30.339Z","dependency_job_id":null,"html_url":"https://github.com/owenvoke/trello-php","commit_stats":null,"previous_names":["pxgamer/trello-php"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Ftrello-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Ftrello-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Ftrello-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Ftrello-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/owenvoke","download_url":"https://codeload.github.com/owenvoke/trello-php/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248886746,"owners_count":21177740,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["php","php-wrapper","trello","trello-php"],"created_at":"2024-11-27T23:12:40.462Z","updated_at":"2025-04-14T13:22:56.935Z","avatar_url":"https://github.com/owenvoke.png","language":"PHP","readme":"# trello-php\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n[![Software License][ico-license]](LICENSE.md)\n[![Build Status][ico-travis]][link-travis]\n[![Style CI][ico-styleci]][link-styleci]\n[![Code Coverage][ico-code-quality]][link-code-quality]\n[![Total Downloads][ico-downloads]][link-downloads]\n\nA simple PHP wrapper for utilising the [Trello](https://developers.trello.com) api.\n\n## Install\n\nVia Composer\n\n```bash\n$ composer require pxgamer/trello-php\n```\n\n## Usage\n\n```php\nuse pxgamer\\Trello;\n\n$trello = new Trello\\Client('api_key', 'access_token');\n```\n\n_All functions return associative arrays._\n\n```php\n// Returns a PHP array of boards that a user is a member of\n$trello-\u003egetBoardsByUser($username);\n```\n```php\n// Returns an array of lists that are available on a board\n$trello-\u003egetListsFromBoard($board_id);\n```\n```php\n// Returns an array of cards that are in a list\n$trello-\u003egetCardsFromList($list_id);\n```\n```php\n// Returns an array of data about a specific card\n$trello-\u003egetCard($card_id);\n```\n```php\n// Adds a card (requires a list ID to be specified)\n// Example Content:\n$content = [\n    'name'   =\u003e 'Card Title',\n    'desc'   =\u003e 'Card Description... La la la.',\n    'idList' =\u003e 'List Id',\n    'pos'    =\u003e 'bottom',\n    'due'    =\u003e '2017-01-27',\n];\n\n$trello-\u003eaddCard($content);\n```\n\n## Change log\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Testing\n\nTesting requires a [Trello API key](https://trello.com/app-key) in order to access my public boards.\n\n```bash\n$ export TRELLO_API_KEY=\n$ export TRELLO_ACCESS_TOKEN=\n$ composer test\n```\n\n## Contributing\n\nPlease see [CONTRIBUTING](.github/CONTRIBUTING.md) and [CODE_OF_CONDUCT](.github/CODE_OF_CONDUCT.md) for details.\n\n## Security\n\nIf you discover any security related issues, please email security@pxgamer.xyz instead of using the issue tracker.\n\n## Credits\n\n- [pxgamer][link-author]\n- [All Contributors][link-contributors]\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n[ico-version]: https://img.shields.io/packagist/v/pxgamer/trello-php.svg?style=flat-square\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n[ico-travis]: https://img.shields.io/travis/pxgamer/trello-php/master.svg?style=flat-square\n[ico-styleci]: https://styleci.io/repos/80208704/shield\n[ico-code-quality]: https://img.shields.io/codecov/c/github/pxgamer/trello-php.svg?style=flat-square\n[ico-downloads]: https://img.shields.io/packagist/dt/pxgamer/trello-php.svg?style=flat-square\n\n[link-packagist]: https://packagist.org/packages/pxgamer/trello-php\n[link-travis]: https://travis-ci.org/pxgamer/trello-php\n[link-styleci]: https://styleci.io/repos/80208704\n[link-code-quality]: https://codecov.io/gh/pxgamer/trello-php\n[link-downloads]: https://packagist.org/packages/pxgamer/trello-php\n[link-author]: https://github.com/pxgamer\n[link-contributors]: ../../contributors\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowenvoke%2Ftrello-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fowenvoke%2Ftrello-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowenvoke%2Ftrello-php/lists"}