jmischer / cake-pdfreactor
CakePdf PdfReactor engine plugin for CakePHP
Installs: 340
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- cakephp/cakephp: ^4.0
- friendsofcake/cakepdf: ^4.1
Requires (Dev)
- phpunit/phpunit: ^8.0
README
CakePdf PDFreactor engine plugin for CakePHP
This plugin contains a wrapper engine for the PDFreactor Web Service Client to use with the CakePHP 4.x CakePdf plugin.
For CakePHP 3.x use the 1.x branch.
This Plugin is not affiliated with RealObjects.com and does not contain
the Webservice client. You will need to import it, e.g. in your applications
bootstrap.php
.
require_once '/path/to/PDFreactor/wrappers/php/lib/PDFreactor.class.php';
Installation
Install using Composer:
composer require jmischer/cake-pdfreactor
Configuration
config/cakepdf.php
:
return [ 'CakePdf' => [ 'engine' => [ 'className' => 'JMischer/CakePDFreactor.PDFreactor', 'client' => [ 'className' => '\com\realobjects\pdfreactor\webservice\client\PDFreactor', 'serviceUrl' => 'http://localhost:9423/service/rest', 'apiKey' => 'your_secret_api_key_if_needed' ], 'options' => [ // PDFreactor configuration ... ] ] ] ];