composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "phpoffice/phppresentation",
  3. "description": "PHPPresentation - Read, Create and Write Presentations documents in PHP",
  4. "keywords": ["PHP","PowerPoint","LibreOffice","pptx","ppt","odp","presentations"],
  5. "homepage": "http://phpoffice.github.io",
  6. "type": "library",
  7. "license": "LGPL",
  8. "authors": [
  9. {
  10. "name": "Mark Baker"
  11. },
  12. {
  13. "name": "Franck Lefevre",
  14. "homepage": "http://rootslabs.net"
  15. },
  16. {
  17. "name": "Ivan Lanin",
  18. "homepage": "http://ivan.lanin.org"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=5.3.0",
  23. "ext-xml": "*",
  24. "ext-zip": "*",
  25. "phpoffice/common": "0.2.*"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "3.7.*",
  29. "phpdocumentor/phpdocumentor":"2.*",
  30. "twig/twig":"1.27",
  31. "phpmd/phpmd": "2.*",
  32. "sebastian/phpcpd": "2.*",
  33. "phploc/phploc": "2.*",
  34. "squizlabs/php_codesniffer": "2.*",
  35. "codeclimate/php-test-reporter": "dev-master"
  36. },
  37. "suggest": {
  38. "ext-gd2": "Required to add images"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "PhpOffice\\PhpPresentation\\": "src/PhpPresentation/"
  43. }
  44. }
  45. }