I've been playing around with cakepdf plugin and dompdf in order to generate pdf files. I've got it working, but had to manually add the reference to the dompdf class as this :
require_once( '... path to ... /vendor/dompdf/dompdf/lib/Cpdf.php' );
inside the controller.
From the cakephp perspective, where should I add the 'require_once' command ?
Thanks. Regards.