{"id":23091638,"url":"https://github.com/josevte/laravel-trello-wrapper","last_synced_at":"2025-10-17T03:10:47.906Z","repository":{"id":57001856,"uuid":"456233041","full_name":"JoseVte/laravel-trello-wrapper","owner":"JoseVte","description":"Laravel 8 Trello API wrapper","archived":false,"fork":false,"pushed_at":"2025-07-11T13:30:05.000Z","size":34,"stargazers_count":1,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-28T23:16:14.102Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/JoseVte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-02-06T18:15:27.000Z","updated_at":"2025-07-11T13:28:10.000Z","dependencies_parsed_at":"2025-06-25T09:35:10.555Z","dependency_job_id":"0972e46e-56ca-49b6-b0e0-a751eaba85a9","html_url":"https://github.com/JoseVte/laravel-trello-wrapper","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/JoseVte/laravel-trello-wrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoseVte%2Flaravel-trello-wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoseVte%2Flaravel-trello-wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoseVte%2Flaravel-trello-wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoseVte%2Flaravel-trello-wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JoseVte","download_url":"https://codeload.github.com/JoseVte/laravel-trello-wrapper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoseVte%2Flaravel-trello-wrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279275567,"owners_count":26138618,"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","status":"online","status_checked_at":"2025-10-17T02:00:07.504Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-12-16T21:18:55.051Z","updated_at":"2025-10-17T03:10:47.866Z","avatar_url":"https://github.com/JoseVte.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel 12 (11, 10, 9, 8) Trello API wrapper\n\n![Build](https://github.com/JoseVte/laravel-trello-wrapper/actions/workflows/ci.yml/badge.svg)\n[![Latest Stable Version](http://poser.pugx.org/josrom/laravel-trello-wrapper/v)](https://packagist.org/packages/josrom/laravel-trello-wrapper)\n[![Total Downloads](http://poser.pugx.org/josrom/laravel-trello-wrapper/downloads)](https://packagist.org/packages/josrom/laravel-trello-wrapper)\n[![License](http://poser.pugx.org/josrom/laravel-trello-wrapper/license)](https://packagist.org/packages/josrom/laravel-trello-wrapper)\n\nA simple Laravel 12 package that wraps [Trello](https://trello.com) API.\n\n## Requirements\n\n* PHP 8.2 or higher\n\n#### Previous versions\n\n* Laravel [11](https://github.com/JoseVte/laravel-trello-wrapper/releases/tag/11.0.1): PHP 8.2 or higher\n* Laravel [10](https://github.com/JoseVte/laravel-trello-wrapper/releases/tag/10.0.0): PHP 8.1 or higher\n* Laravel [9](https://github.com/JoseVte/laravel-trello-wrapper/releases/tag/9.0.0) \u0026 [8](https://github.com/JoseVte/laravel-trello-wrapper/releases/tag/8.0.0): PHP 7.3 or higher\n\n## Installation\n\nYou can install the package using the [Composer](https://getcomposer.org/) package manager running this command in your project root:\n\n```sh\ncomposer require josrom/laravel-trello-wrapper\n```\n\n## Laravel\n\nThe package includes a service providers and a facade for easy integration and a nice syntax for Laravel.\n\n### Configuration\n\nPublish the configuration file with:\n\n```sh\nphp artisan vendor:publish --provider=\"LaravelTrello\\TrelloServiceProvider\"\n```\n\nHead into the file and configure the keys and defaults you'd like the package to use.\n\n## Usage\n\n#### Creating a basic card\n\n```php\n$card = Trello::manager()-\u003egetCard();\n$card\n    -\u003esetBoardId(Trello::getDefaultBoardId())\n    -\u003esetListId(Trello::getDefaultListId())\n    -\u003esetName('Example card')\n    -\u003esetDescription('Description of the card')\n    -\u003esave();\n```\n\n#### Creating a more complex card\n\n```php\n// Create the card\n$card = Trello::manager()-\u003egetCard();\n$card\n    -\u003esetBoardId(Trello::getDefaultBoardId())\n    -\u003esetListId(Trello::getDefaultListId())\n    -\u003esetName('Example card')\n    -\u003esetDescription('Description of the card')\n    -\u003esave();\n\n// Add a checklist with one item\n$checklist = Trello::manager()-\u003egetChecklist();\n$checklist\n    -\u003esetCard($card)\n    -\u003esetName('Example list')\n    -\u003esave();\nTrello::getChecklistApi()-\u003eitems()-\u003ecreate($checklist-\u003egetId(), 'Example checklist item');\n\n// Attach an image using a url\nTrello::getCardApi()-\u003eattachments()-\u003ecreate($card-\u003egetId(), ['url' =\u003e 'http://lorempixel.com/400/200/']);\n```\n\n#### More examples\n\nFor more examples of usage, please see the original PHP Trello API package documentation: https://github.com/cdaguerre/php-trello-api\n\n## Contributing\n\nIf 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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosevte%2Flaravel-trello-wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjosevte%2Flaravel-trello-wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosevte%2Flaravel-trello-wrapper/lists"}