melnikoved / poppler-bundle
PHP Poppler
dev-master
2015-02-26 08:26 UTC
This package is not auto-updated.
Last update: 2025-07-05 21:02:42 UTC
README
This bundle allows you to merge pdf files with poppler util - pdfUnit
Installation
Step 1: Download the bundle
Open your command console, browse to your project and execute the following:
$ composer require melnikoved/poppler-bundle:dev-master
Step 2: Enable the bundle
// app/AppKernel.php public function registerBundles() { return array( // ... new Melnikoved\PopplerBundle\MelnikovedPopplerBundle(), ); }
Usage
For merging pdf files you should use service 'poppler'
$this->get('poppler')->merge($inputFileNames, $outputFileName);