quick minor path updates (#1968)
[openemr.git] / library / html2pdf / composer.json
blobfedb8bb8ba8ac83be81aec9c0fc4f829f5a099b4
2     "name": "spipu/html2pdf",
3     "type": "library",
4     "description": "HTML2PDF is a HTML to PDF converter written in PHP5 (it uses TCPDF). OFFICIAL PACKAGE",
5     "keywords": ["html", "pdf", "html2pdf"],
6     "homepage": "http://html2pdf.fr/",
7     "license": "LGPL",
8     "authors": [
9         {
10             "name": "Spipu",
11             "homepage": "https://github.com/spipu",
12             "role": "Developer"
13         }
14     ],
15     "require": {
16         "php": ">=5.3.2",
17         "tecnickcom/tcpdf": "~6.2.0",
18         "setasign/fpdi": "1.6.*"
19     },
20     "suggest": {
21         "fagundes/zff-html2pdf": "zff-html2pdf module ~0.1.1, if you need to integrate HTML2PDF with Zend Framework 2 (zf2)",
22         "ext-gd": "Allows to embed images into the PDF"
23     },
24     "autoload": {
25         "files": [
26             "html2pdf.class.php",
27             "_class/exception.class.php",
28             "_class/locale.class.php",
29             "_class/myPdf.class.php",
30             "_class/parsingHtml.class.php",
31             "_class/parsingCss.class.php"
32         ]
33     }