composer.json 854 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "dompdf/php-font-lib",
  3. "type": "library",
  4. "description": "A library to read, parse, export and make subsets of different types of font files.",
  5. "homepage": "https://github.com/dompdf/php-font-lib",
  6. "license": "LGPL-2.1-or-later",
  7. "authors": [
  8. {
  9. "name": "The FontLib Community",
  10. "homepage": "https://github.com/dompdf/php-font-lib/blob/master/AUTHORS.md"
  11. }
  12. ],
  13. "autoload": {
  14. "psr-4": {
  15. "FontLib\\": "src/FontLib"
  16. }
  17. },
  18. "autoload-dev": {
  19. "psr-4": {
  20. "FontLib\\Tests\\": "tests/FontLib"
  21. }
  22. },
  23. "config": {
  24. "bin-dir": "bin"
  25. },
  26. "require": {
  27. "php": "^7.1 || ^8.0",
  28. "ext-mbstring": "*"
  29. },
  30. "require-dev": {
  31. "symfony/phpunit-bridge" : "^3 || ^4 || ^5 || ^6"
  32. }
  33. }