You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
860 B

3 years ago
  1. {
  2. "name": "voku/portable-ascii",
  3. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4. "type": "library",
  5. "keywords": [
  6. "clean",
  7. "php",
  8. "ascii"
  9. ],
  10. "homepage": "https://github.com/voku/portable-ascii",
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Lars Moelleken",
  15. "homepage": "http://www.moelleken.org/"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.0.0"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  23. },
  24. "suggest": {
  25. "ext-intl": "Use Intl for transliterator_transliterate() support"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "voku\\": "src/voku/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "voku\\tests\\": "tests/"
  35. }
  36. }
  37. }