-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
52 lines (40 loc) · 941 Bytes
/
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
{
"name": "mpdf/mpdf",
"type": "library",
"description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
"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"]
},
"scripts": {
"post-install-cmd": [
"php -r \"chmod('./ttfontdata', 0777);\"",
"php -r \"chmod('./tmp', 0777);\"",
"php -r \"chmod('./graph_cache', 0777);\""
]
}
}