1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
"name": "iio/libmergepdf",
"description": "Library for merging multiple PDFs",
"keywords": ["pdf", "merge"],
"homepage": "https://github.com/hanneskod/libmergepdf",
"type": "library",
"license": "WTFPL",
"authors": [
{
"name": "Hannes Forsgård",
"email": "hannes.forsgard@fripost.org"
}
],
"autoload": {
"psr-4": {
"iio\\libmergepdf\\": "src/"
},
"classmap": [
"tcpdi/"
]
},
"require": {
"php": "^7.1||^8.0",
"tecnickcom/tcpdf": "^6.2.22",
"setasign/fpdi": "^2"
},
"conflict": {
"setasign/fpdf": "*",
"rafikhaceb/tcpdi": "*"
},
"require-dev": {
"phpunit/phpunit": "^7|^8",
"smalot/pdfparser": "~0.13"
}
}
|