-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.14 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
{
"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.0",
"tecnickcom/tcpdf": "^6.4"
},
"require-dev": {
"phpunit/phpunit": "^9|^10|^11",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1"
},
"suggest": {
"vianetz/signaturportal-api": "Use this library to sign your generated PDF documents.",
"zf1/zend-pdf": "Necessary if you want to use Zend_Pdf for merging. By default this package uses the fpdi merger."
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}