-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.22 KB
/
composer.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "vianetz/pdf-generator",
"description": "A library that supports method for generating PDF documents based on DomPdf and FPDI.",
"type": "library",
"keywords": [
"vianetz",
"pdf"
],
"homepage": "https://www.vianetz.com",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Christoph Massmann",
"email": "[email protected]",
"homepage": "https://www.vianetz.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"Vianetz\\Pdf\\": "src/"
}
},
"require": {
"php": "^7.4|^8",
"dompdf/dompdf": "^2.0|^3.0",
"setasign/fpdi": "^2.6",
"setasign/fpdf": "^1.8"
},
"require-dev": {
"phpunit/phpunit": "^9|^10|^11",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0"
},
"suggest": {
"horstoeko/zugferd": "Create Zugferd documents with this merger library",
"vianetz/signaturportal-api": "Use this library to sign your generated PDF documents.",
"tecnickcom/tcpdf": "Necessary if you want to use TCPDF for merging. By default this package uses the fpdf merger."
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}