composer.json 634 B

123456789101112131415161718192021222324
  1. {
  2. "name": "patchwork/utf8",
  3. "type": "library",
  4. "description": "UTF-8 strings handling for PHP 5.3: portable, performant and extended",
  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. },
  18. "autoload": {
  19. "psr-0": {
  20. "Patchwork": "class/",
  21. "Normalizer": "class/"
  22. }
  23. }
  24. }