This repository was archived by the owner on May 21, 2021. It is now read-only.

Description
Hi,
I just bought https://www.setasign.com/products/fpdi-pdf-parser/manual/ to use newer versions of PDF, but unfortunately PDFMerger is using is own version of FPDI :
public function __construct()
{
if(!class_exists("FPDF")) {
require_once('fpdf/fpdf.php');
}
if(!class_exists("FPDI")) {
require_once('fpdi/fpdi.php');
}
}
If I comment out these lines, it doesn't work anymore. My composer.json is looking like:
"require":
{
"setasign/fpdi-fpdf": "^2.0.0",
"setasign/fpdi_pdf-parser": "^2.0",
"rguedes/pdfmerger": "dev-master",
...
}
I thought it should work because I'm loading setasign's librairies before your library, but no :-/
Thanks a lot,
Stéphane