composer.json 563 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "true/punycode",
  3. "description": "A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA)",
  4. "keywords": ["IDNA", "punycode"],
  5. "homepage": "https://github.com/true/php-punycode",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Renan Gonçalves",
  10. "email": "renan.saddam@gmail.com"
  11. }
  12. ],
  13. "autoload": {
  14. "psr-4": {
  15. "TrueBV\\": "src/"
  16. }
  17. },
  18. "require": {
  19. "symfony/polyfill-mbstring": "^1.3",
  20. "php": ">=5.3.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "~4.7",
  24. "squizlabs/php_codesniffer": "~2.0"
  25. }
  26. }