phihuynh / html2pdfbundle
Use HTML2PDF as a Symfony Service
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.2.5
- spipu/html2pdf: ~5.2
- symfony/dependency-injection: ^4.4 || ^5.0
- symfony/http-kernel: ^4.4 || ^5.0
Requires (Dev)
- phpunit/phpunit: ^7.2 || ^6.5 || ^4.8
- symfony/framework-bundle: ^4.4 || ^5.0
- symfony/yaml: ^4.4 || ^5.0
This package is not auto-updated.
Last update: 2025-03-26 19:12:39 UTC
README
Html2pdf for Symfony 4 or 5 as a service.
How to install ?
Just add this to your composer.json file:
"require": { ... "phihuynh/html2pdfbundle": "dev-master", }
How to use ?
In your action:
use Ensepar\Html2pdfBundle\Factory\Html2pdfFactory; public function yourAction(Request $request, Html2pdfFactory $html2pdfFactory){ ... $html2pdf = $html2pdfFactory->create(); }
You can pass every option you would pass to html2pdf, for instance :
$html2pdf = $html2pdfFactory->create('P', 'A4', 'en', true, 'UTF-8', array(10, 15, 10, 15));
How to run the tests ?
composer install
phpunit