Manuel Dalla Lana
Manuel Dalla Lana
As a quick fix pass true as option value: ```php $pdf->setOption('presentational-hints', true); ``` Currently, the `null` option value is treated as `false` and is skipped in the command line build....
Hi @andythedandy! I don't personally use AWS Lambda, but we welcome any PRs that enable using this bundle with AWS Lambda, provided they don't interfere with the standard functionality of...
Which version of WeasyPrint is in use? `--timeout` was introduced in version 60.0 (https://doc.courtbouillon.org/weasyprint/stable/changelog.html#version-60-0)
A quick workaround for this issue is to lock the `php-weasyprint` version to 1.x in your `composer.json` when using WeasyPrint < 60.0: ```json "require": { "pontedilana/php-weasyprint": "^1.5", "pontedilana/weasyprint-bundle": "^2.4" }...
> (Apple Silicon only) Will there be a version for Intel Macs?
Looks like I missed an `each` last summer, my bad!
I suggest updating the link, pointing it to [Stopwords ISO](https://github.com/stopwords-iso) project
I've opened PR #3296 to fix this issue. @ManyTheFish I agree the project is not very active, but I believe an accessible, even if semi-inactive, repository is still better than...
You should downgrade to ORM 2.x or wait for the next release of this bundle
@alexislefebvre I managed to silence the deprecation by editing `src\Kernel.php`, extending its constructor ```php namespace App; use Doctrine\Deprecations\Deprecation; use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; use Symfony\Component\HttpKernel\Kernel as BaseKernel; class Kernel extends BaseKernel { use...