lfbn / dynalist-php-client
A PHP Client for the Dynalist API
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/lfbn/dynalist-php-client
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-10-02 18:53:20 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);