lfbn / dynalist-php-client
A PHP Client for the Dynalist API
v1.0.2
2021-04-07 22:02 UTC
Requires
- php: >=8.0.0
- symfony/http-client: ^5.2
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.18
- phpunit/phpunit: ^9.5
- symfony/var-dumper: ^5.2
This package is not auto-updated.
Last update: 2025-04-03 16:43:53 UTC
README
PHP Dynalist Client to interact with the Dynalist API.
Installation using Composer
composer require lfbn/dynalist-client
Quick view
<?php $dynalist = DynalistApi('your-api-key'); // get all documents from a file $fileId = 'the-file-id'; $response = $dynalist->getDocumentContent($fileId); var_dump($response); // send something to inbox $response = $dynalist->sendToInbox(0, 'hi to everyone!'); var_dump($response);