forked from mpdf/mpdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (33 loc) · 914 Bytes
/
composer.json
File metadata and controls
42 lines (33 loc) · 914 Bytes
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
{
"name": "blueliquiddesigns/mpdf",
"type": "library",
"description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support, with a strong focus on WordPress integration. If you just want a standalone option (without WordPress) use the mpdf/mpdf packagist option.",
"keywords": ["php", "pdf", "utf-8"],
"homepage": "http://mpdf.github.io",
"license": ["GPL-2.0"],
"authors": [
{
"name": "Ian Back",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/mpdf/mpdf/issues",
"source": "https://github.com/mpdf/mpdf",
"docs": "http://mpdf.github.io"
},
"require": {
"php": ">=5.4.0",
"ext-mbstring": "*",
"setasign/fpdi": "1.6.*"
},
"require-dev": {
"phpunit/phpunit": "^4.7"
},
"suggest": {
"ext-zlib": "Needed for compression of embedded resources, such as fonts"
},
"autoload": {
"classmap": ["mpdf.php", "classes"]
}
}