| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
DompdfModule integrates the Dompdf library with Zend Framework.
It is recommended that you use Composer to install this package.
composer require dino/dompdf-module
You can override options via the dompdf_module key in your local or global config files. See DompdfModule/config/module.config.php for config options.
<?php
namespace Application\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use DompdfModule\View\Model\PdfModel;
class ReportController extends AbstractActionController
{
public function monthlyReportPdfAction()
{
return (new PdfModel())
->setOptions([
'fileName' => 'monthly-report',
'display' => PdfModel::DISPLAY_ATTACHMENT,
'paperSize' => 'a4',
'paperOrientation' => 'landscape'
])
->setVariables([
'message' => 'Hello'
]);
}
}So you want to contribute? Fantastic! Don't worry, it's easy. Local builds, tests, and code quality checks can be executed using Docker.
docker build -t dino/dompdf-module .
docker run -v composer-cache:/var/lib/composer -v ${PWD}:/opt/app dino/dompdf-module
Super easy, right? Here's a quick walk through as to what's going on.
Note: You only need to run the first command once in order to build the image. The second command is what executes the build (build, tests, code quality checks, etc.).
By default, builds executed using Docker are done so using the latest stable version of PHP. If you're adventurous you can execute builds against other supported versions of PHP.
PHP 5.6
docker build --build-arg PHP_VERSION=5.6 --tag dino/dompdf-module-php56 .
docker run -v composer-cache:/var/lib/composer -v ${PWD}:/opt/app dino/dompdf-module-php56
| Back | FazBrowse Home | New Git URL |