composer.json 848 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "phpoffice/common",
  3. "description": "PHPOffice Common",
  4. "keywords": ["PHP","Office","Common","component"],
  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. "require": {
  18. "php": ">=5.3.0",
  19. "pclzip/pclzip": "^2.8"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^4.8.36 || ^7.0",
  23. "phpdocumentor/phpdocumentor":"2.*",
  24. "phpmd/phpmd": "2.*",
  25. "sebastian/phpcpd": "2.*",
  26. "phploc/phploc": "2.*",
  27. "squizlabs/php_codesniffer": "2.*"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "PhpOffice\\Common\\": "src/Common/"
  32. }
  33. }
  34. }