2
0

composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  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": "OSL-3.0",
  8. "authors": [
  9. {
  10. "name": "Spipu",
  11. "homepage": "https://github.com/spipu",
  12. "role": "Developer"
  13. }
  14. ],
  15. "require": {
  16. "php": "^5.6 || ^7.0 || ^8.0",
  17. "ext-mbstring": "*",
  18. "ext-gd": "*",
  19. "tecnickcom/tcpdf": "^6.3"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^5.0 || ^9.0"
  23. },
  24. "suggest": {
  25. "fagundes/zff-html2pdf": "if you need to integrate Html2Pdf with Zend Framework 2 (zf2)",
  26. "ext-gd": "Allows to embed images into the PDF"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Spipu\\Html2Pdf\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Spipu\\Html2Pdf\\Tests\\": "Tests/"
  36. }
  37. }
  38. }