composer.json 581 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "phenx/php-svg-lib",
  3. "type": "library",
  4. "description": "A library to read, parse and export to PDF SVG files.",
  5. "homepage": "https://github.com/PhenX/php-svg-lib",
  6. "license": "LGPL-3.0",
  7. "authors": [
  8. {
  9. "name": "Fabien Ménager",
  10. "email": "fabien.menager@gmail.com"
  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. "sabberworm/php-css-parser": "^8.3"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^5.5|^6.5"
  28. }
  29. }