composer.json 868 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "patchwork/utf8",
  3. "type": "library",
  4. "description": "Extensive, portable and performant handling of UTF-8 and grapheme clusters for PHP",
  5. "keywords": ["utf8","utf-8","unicode","i18n"],
  6. "homepage": "https://github.com/nicolas-grekas/Patchwork-UTF8",
  7. "license": "(Apache-2.0 or GPL-2.0)",
  8. "authors": [
  9. {
  10. "name": "Nicolas Grekas",
  11. "email": "p@tchwork.com",
  12. "role": "Developer"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.0",
  17. "lib-pcre": ">=7.3"
  18. },
  19. "suggest": {
  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-0": {
  26. "Patchwork": "class/",
  27. "Normalizer": "class/"
  28. }
  29. }
  30. }