Download the PHP package versatecnologia/dompdf-module without Composer
On this page you can find all versions of the php package versatecnologia/dompdf-module. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download versatecnologia/dompdf-module
More information about versatecnologia/dompdf-module
Files in versatecnologia/dompdf-module
Package dompdf-module
Short Description A Zend Framework 2 module for incorporating DOMPDF support.
License MIT
Homepage http://raymondkolbe.com
Informations about the package dompdf-module
DOMPDFModule
The DOMPDF module integrates the DOMPDF library with Zend Framework 2 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
-
create a
composer.json
file with following contents: - install PHP Composer via
curl -s http://getcomposer.org/installer | php
(on windows, download http://getcomposer.org/installer and execute it with PHP) - run
php composer.phar install
- 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.).
Other Supported PHP Versions
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
To-do
- Add command line support.