pdfapi/zf2-pdfapi-module

This package is abandoned and no longer maintained. No replacement package was suggested.

Zend Framework 2 module for converting PDF documents via pdfapi.io

v1.0.0 2016-11-08 08:18 UTC

This package is not auto-updated.

Last update: 2021-11-07 23:28:56 UTC


README

Installation

pdfapi.io Zend Framework module can be installed with Composer. Run this command:

composer require pdfapi/zf2-pdfapi-module

or add following line in your project composer.json:

"require": {
    "pdfapi/zf2-pdfapi-module": "^1.0"
},

Usage

Run command

composer update

Add your module.config.php file following lines

'pdfapi' => [
    'apiKey' => 'API_KEY',
],

or copy pdfapi.global.php.dist to your config/autload directory and rename it pdfapi.global.php

And in your code

/**
 * @var $pdf PdfApi
 */
$pdf = $this->serviceLocator->get(PdfApi::class);

For getting API KEY you need to register account at https://pdfapi.io. Generating API KEY will take you 10 seconds. And it is free. Really.