composer.json 699 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "dompdf/php-svg-lib",
  3. "type": "library",
  4. "description": "A library to read, parse and export to PDF SVG files.",
  5. "homepage": "https://github.com/dompdf/php-svg-lib",
  6. "license": "LGPL-3.0-or-later",
  7. "authors": [
  8. {
  9. "name": "The SvgLib Community",
  10. "homepage": "https://github.com/dompdf/php-svg-lib/blob/master/AUTHORS.md"
  11. }
  12. ],
  13. "autoload": {
  14. "psr-4": {
  15. "Svg\\": "src/Svg"
  16. }
  17. },
  18. "autoload-dev": {
  19. "psr-4": {
  20. "Svg\\Tests\\": "tests/Svg"
  21. }
  22. },
  23. "require": {
  24. "php": "^7.1 || ^8.0",
  25. "ext-mbstring": "*",
  26. "sabberworm/php-css-parser": "^8.4"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  30. }
  31. }