composer.json 786 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "phpoffice/math",
  3. "description": "Math - Manipulate Math Formula",
  4. "keywords": ["PHP","mathml", "officemathml"],
  5. "homepage": "https://phpoffice.github.io/Math/",
  6. "type": "library",
  7. "license": "MIT",
  8. "autoload": {
  9. "psr-4": {
  10. "PhpOffice\\Math\\": "src/Math/"
  11. }
  12. },
  13. "autoload-dev": {
  14. "psr-4": {
  15. "Tests\\PhpOffice\\Math\\": "tests/Math/"
  16. }
  17. },
  18. "authors": [
  19. {
  20. "name": "Progi1984",
  21. "homepage": "https://lefevre.dev"
  22. }
  23. ],
  24. "require": {
  25. "php": "^7.1|^8.0",
  26. "ext-dom": "*",
  27. "ext-xml": "*"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "^7.0 || ^9.0",
  31. "phpstan/phpstan": "^0.12.88 || ^1.0.0"
  32. }
  33. }