composer package updates
[openemr.git] / vendor / mpdf / mpdf / composer.json
blobecad71b3970b9d036b46c9110a1eb7875bc7d65f
3         "name": "mpdf/mpdf",
4         "type": "library",
6         "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
8         "keywords": ["php", "pdf", "utf-8"],
9         "homepage": "https://mpdf.github.io",
11         "license": ["GPL-2.0-only"],
13         "authors": [
14                 {
15                         "name": "Matěj Humpál",
16                         "role": "Developer, maintainer"
17                 },
18                 {
19                         "name": "Ian Back",
20                         "role": "Developer (retired)"
21                 }
22         ],
24         "support": {
26                 "issues": "https://github.com/mpdf/mpdf/issues",
27                 "source": "https://github.com/mpdf/mpdf",
28                 "docs": "http://mpdf.github.io"
30         },
32         "require": {
34                 "php": "^5.6 || ~7.0.0 || ~7.1.0 || ~7.2.0",
36                 "ext-gd": "*",
37                 "ext-mbstring": "*",
39                 "psr/log": "^1.0",
40                 "setasign/fpdi": "1.6.*",
41                 "paragonie/random_compat": "^1.4|^2.0",
42                 "myclabs/deep-copy": "^1.7"
44         },
46         "require-dev": {
48                 "phpunit/phpunit": "^5.0",
49                 "mockery/mockery": "^0.9.5",
50                 "squizlabs/php_codesniffer": "^2.7.0",
51                 "tracy/tracy": "^2.4"
53         },
55         "suggest": {
57                 "ext-bcmath": "Needed for generation of some types of barcodes",
58                 "ext-zlib": "Needed for compression of embedded resources, such as fonts",
59                 "ext-xml": "Needed mainly for SVG manipulation"
61         },
63         "autoload": {
65                 "psr-4": {
66                         "Mpdf\\": "src/"
67                 }
69         },
71         "autoload-dev": {
73                 "psr-4": {
74                         "Mpdf\\": "tests/Mpdf"
75                 },
77                 "files": [
78                         "src/functions-dev.php"
79                 ]
81         },
83         "scripts": {
84                 "post-install-cmd": [
85                         "php -r \"chmod('./tmp', 0777);\""
86                 ]
87         },
89         "extra": {
90                 "branch-alias": {
91                         "dev-development": "7.0-dev"
92                 }
93         }