Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Releases: thecodingmachine/gotenberg-php-client

3.2.0

11 Jan 08:24
c556fe9
Compare
Choose a tag to compare

A document may now be created from a string (thanks @tigitz!)

3.1.1

19 Dec 14:46
bc7e8d3
Compare
Choose a tag to compare

Update httplug contraints (thanks @lcp0578!)

3.1.0

12 Dec 15:58
Compare
Choose a tag to compare

OfficeRequest now handles paper size and orientation.

3.0.0

10 Dec 17:58
Compare
Choose a tag to compare

Client now supports Gotenberg API v3.

php-http/message

30 May 15:34
Compare
Choose a tag to compare

The package php-http/message was in dev dependencies, which was causing an exception.

It is now a standard dependency.

Introducing DocumentFactory

19 Apr 15:31
20b4bf1
Compare
Choose a tag to compare

This new release make instantiating documents easier.

There are some breaking changes as described below:

# previously...
$document = new Document('file.pdf');
$document->feedFromPath('/path/to/file');

# ... now:
$document = DocumentFactory::makeFromPath('file.pdf', '/path/to/file');

# previously...
$document = new Document('file.pdf');
$document->feedFromStream(new LazyOpenStream('path/to/file', 'r'));

# ... now:
$document = DocumentFactory::makeFromStream('file.pdf', new LazyOpenStream('path/to/file', 'r'));

Adios composer.lock

19 Apr 06:52
Compare
Choose a tag to compare

Removing composer.lock as mentioned by @TobiasJ in #1.

First release

18 Apr 14:49
Compare
Choose a tag to compare

First release of this PHP client for the Gotenberg API.