Download the PHP package netiul/dompdf-module without Composer
On this page you can find all versions of the php package netiul/dompdf-module. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package dompdf-module
DOMPDFModule
Master:
The DOMPDF module integrates the DOMPDF library with Laminas with minimal effort on the consumer's end.
Requirements
Installation
Installation of DOMPDFModule uses PHP Composer. For more information about PHP Composer, please visit the official PHP Composer site.
Installation steps
cd my/project/directory
-
Add the module to the project by:
composer require netiul/dompdf-module
- open
my/project/directory/config/application.config.php
and add the following key to yourmodules
:
Configuration options
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.
Usage
Development
So you want to contribute? Fantastic! Don't worry, it's easy. Local builds, tests, and code quality checks can be executed using Docker.
Quick Start
- Install Docker CE.
- Run the following from your terminal:
Super easy, right? Here's a quick walk through as to what's going on.
docker build -t dino/dompdf-module .
builds a docker image that will be used for each run (i.e. each timedocker run
is executed) and tags it with the namedino/dompdf-module
.docker run -v composer-cache:/var/lib/composer -v ${PWD}:/opt/app dino/dompdf-module
runs the default build in a new Docker container derived from the image taggeddino/dompdf-module
. The root of the project and PHP Composer cache volume are mounted so that artifacts generated during the build process are available to you on your local machine.
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.).
All versions of dompdf-module with dependencies
laminas/laminas-servicemanager Version ^3.4.1
laminas/laminas-modulemanager Version ^2.10.1
laminas/laminas-eventmanager Version ^3.3.0
laminas/laminas-view Version ^2.13.0
dompdf/dompdf Version ^v1.2.0 || ^v2.0.0
mindplay/composer-locator Version ^2.1.4