-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
64 lines (53 loc) · 1.07 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "setasign/setafpdf",
"description": "SetaFPDF is a clone of FPDF with an almost compatible interface while using SetaPDF-Core internally for the PDF generation.",
"homepage": "https://www.setasign.com",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Setasign",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"setasign\\SetaFpdf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"setasign\\tests\\": "tests/"
}
},
"require": {
"php": ">=5.6",
"ext-ctype": "*",
"setasign/setapdf-core": "^2.29"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"setasign/fpdi-fpdf": "^2.1",
"setasign/fpdf": "1.8.1"
},
"repositories": [
{
"type": "composer",
"url": "https://www.setasign.com/downloads/"
}
],
"config": {
"process-timeout":600,
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"keywords": [
"pdf",
"FPDF",
"SetaFPDF",
"SetaPDF"
]
}