This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
Releases: thecodingmachine/gotenberg-php-client
Releases · thecodingmachine/gotenberg-php-client
6.3.0
6.2.0
6.1.1
Upgrade thecodingmachine/safe and phpstan+deps to the latest releases (thanks @bendavies).
6.1.0
This release upgrades the client for Gotenberg 6.1.0.
New features
Custom HTTP headers
# remote URL
$request = new URLRequest('https://google.com');
$request->addRemoteURLHTTPHeader('A-Header', 'Foo');
# webhook URL
$request = new URLRequest('https://google.com');
$request->setWebhookURL('https://google.com');
$request->addWebhookURLHTTPHeader('A-Header', 'Foo');
Page ranges
$request = new URLRequest('https://google.com');
$request->setPageRanges('1-1');
Improvements
- Improved README (fixes #9).