Ingen beskrivning

composer.json 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "phpoffice/phpword",
  3. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (DOCX, ODT, RTF, HTML, PDF)",
  4. "keywords": [
  5. "PHP", "PhpOffice", "office", "PhpWord", "word", "template", "template processor", "reader", "writer",
  6. "docx", "OOXML", "OpenXML", "Office Open XML", "ISO IEC 29500", "WordprocessingML",
  7. "RTF", "Rich Text Format", "doc", "odt", "OpenDocument", "PDF", "HTML"
  8. ],
  9. "homepage": "http://phpoffice.github.io",
  10. "type": "library",
  11. "license": "LGPL-3.0",
  12. "authors": [
  13. {
  14. "name": "Mark Baker"
  15. },
  16. {
  17. "name": "Gabriel Bull",
  18. "email": "me@gabrielbull.com",
  19. "homepage": "http://gabrielbull.com/"
  20. },
  21. {
  22. "name": "Franck Lefevre",
  23. "homepage": "http://blog.rootslabs.net"
  24. },
  25. {
  26. "name": "Ivan Lanin",
  27. "homepage": "http://ivan.lanin.org"
  28. },
  29. {
  30. "name": "Roman Syroeshko",
  31. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  32. }
  33. ],
  34. "require": {
  35. "php": ">=5.3.3",
  36. "ext-xml": "*"
  37. },
  38. "require-dev": {
  39. "phpunit/phpunit": "3.7.*",
  40. "phpdocumentor/phpdocumentor":"2.*",
  41. "squizlabs/php_codesniffer": "1.*",
  42. "phpmd/phpmd": "2.*",
  43. "sebastian/phpcpd": "2.*",
  44. "phploc/phploc": "2.*",
  45. "dompdf/dompdf":"0.6.*",
  46. "tecnick.com/tcpdf": "6.*",
  47. "mpdf/mpdf": "5.*"
  48. },
  49. "suggest": {
  50. "ext-zip": "Used to write DOCX and ODT",
  51. "ext-gd2": "Used to add images",
  52. "ext-xmlwriter": "Used to write DOCX and ODT",
  53. "ext-xsl": "Used to apply XSL style sheet to main document part of OOXML template",
  54. "dompdf/dompdf": "Used to write PDF"
  55. },
  56. "autoload": {
  57. "psr-4": {
  58. "PhpOffice\\PhpWord\\": "src/PhpWord"
  59. }
  60. }
  61. }