-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
94 lines (65 loc) · 1.41 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"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": "https://mpdf.github.io",
"license": ["GPL-2.0"],
"authors": [
{
"name": "Matěj Humpál",
"role": "Developer, maintainer"
},
{
"name": "Ian Back",
"role": "Developer (retired)"
}
],
"support": {
"issues": "https://github.com/mpdf/mpdf/issues",
"source": "https://github.com/mpdf/mpdf",
"docs": "http://mpdf.github.io"
},
"require": {
"php": "^5.6 || ~7.0.0 || ~7.1.0 || ~7.2.0",
"ext-gd": "*",
"ext-mbstring": "*",
"psr/log": "^1.0",
"setasign/fpdi": "1.6.*",
"paragonie/random_compat": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"mockery/mockery": "^0.9.5",
"squizlabs/php_codesniffer": "^2.7.0",
"tracy/tracy": "^2.4"
},
"suggest": {
"ext-bcmath": "Needed for generation of some types of barcodes",
"ext-zlib": "Needed for compression of embedded resources, such as fonts",
"ext-xml": "Needed mainly for SVG manipulation"
},
"autoload": {
"psr-4": {
"Mpdf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mpdf\\": "tests/Mpdf"
},
"files": [
"src/functions-dev.php"
]
},
"scripts": {
"post-install-cmd": [
"php -r \"chmod('./tmp', 0777);\""
]
},
"extra": {
"branch-alias": {
"dev-development": "7.0-dev"
}
}
}