composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "patchwork/utf8",
  3. "type": "library",
  4. "description": "Portable and performant UTF-8, Unicode and Grapheme Clusters for PHP",
  5. "keywords": ["utf8","utf-8","unicode","i18n","grapheme"],
  6. "homepage": "https://github.com/tchwork/utf8",
  7. "license": "(Apache-2.0 or GPL-2.0)",
  8. "authors": [
  9. {
  10. "name": "Nicolas Grekas",
  11. "email": "p@tchwork.com"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.0",
  16. "lib-pcre": ">=7.3"
  17. },
  18. "suggest": {
  19. "ext-wfio": "Use WFIO for UTF-8 filesystem access on Windows",
  20. "ext-intl": "Use Intl for best performance",
  21. "ext-iconv": "Use iconv for best performance",
  22. "ext-mbstring": "Use Mbstring for best performance"
  23. },
  24. "autoload": {
  25. "psr-4": {"Patchwork\\": "src/Patchwork/"},
  26. "classmap": ["src/Normalizer.php"]
  27. },
  28. "autoload-dev": {
  29. "files": ["tests/bootstrap.php"]
  30. },
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "1.3-dev"
  34. }
  35. }
  36. }