semaio / php-trello-api
PHP client for Trello API v1
Installs: 2 749
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 4
Open Issues: 1
Requires
- php: ^8.2|^8.3|^8.4
- php-http/discovery: ^1.6|^2.0
- psr/http-client: ^1.0|^2.0
- psr/http-factory: ^1.0|^2.0
- psr/http-message: ^1.0|^2.0
- psr/http-message-implementation: ^1.0|^2.0
Requires (Dev)
- http-interop/http-factory-guzzle: ^1.0
- php-http/guzzle7-adapter: ^1.1.0
- phpunit/phpunit: ^10.0|^11.0|^12.0
- symfony/event-dispatcher: ^4.4|^5.0|^6.0|^7.0
- symfony/http-foundation: ^4.4|^5.0|^6.0|^7.0
- symplify/config-transformer: ^10.0|^11.0|^12.0
- symplify/easy-coding-standard: ^8.0|^9.0|^10.0|^11.0|^12.0
Suggests
- symfony/event-dispatcher: Symfony Event Dispatcher for the Trello webhook service.
- symfony/http-foundation: Symfony Http Foundation for the Trello webhook service.
README
This library is based on the great php-trello-api but updated and modernized for usage with PHP 8.2+ and a modern version of Guzzle.
Important: Not all components have been thoroughly tested, especially the webhook behaviour.
Installation
The recommended way is using composer:
$ composer require semaio/php-trello-api
Usage
Basic example for card creation:
namespace MyProject;
use Semaio\TrelloApi;
require 'vendor/autoload.php';
$client_builder = new TrelloApi\ClientBuilder();
$client = $client_builder->build( $trello_api_key, $trello_api_token ); // Change $trello_api_key and $trello_api_token
$card = array(
'name' => 'Card subject',
'desc' => 'Card content',
'pos' => '1',
'idList' => $list_id, // Set a list ID
'labels' => array( $label ),
);
$client->getCardApi()->create( $card );
Support
If you encounter any problems or bugs, please create an issue on GitHub.
Contribution
Any contribution to the development of php-trello-api
is highly welcome. The best possibility to provide any code is to open a pull request on GitHub.
License
MIT License. See the LICENSE.txt file for more details.