This repository contains the static compiled binaries from the wkhtmltopdf project. More about the functionality of wkhtmltopdf and wkthmltoimage can be found there.
Hint: The version of the binary is equal to the git tag.
This package can be found on Packagist and installed with Composer.
php composer.phar require getoxs/wkhtmltopdf-buster-amd64
The binary will then be located at: vendor/bin/wkhtmltopdf-buster-amd64
You can easily use it with laravel-snappy package by configure config\snappy.php
'pdf' => [
'enabled' => true,
'binary' => env('WKHTML_PDF_BINARY', '../vendor/bin/wkhtmltopdf-buster-amd64'),
...