composer.json 767 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "mso/idna-convert",
  3. "description": "A library for encoding and decoding internationalized domain names",
  4. "license": "LGPL-2.1+",
  5. "keywords": ["PHP","IDN","IDNA"],
  6. "homepage": "http://idnaconv.net/",
  7. "authors": [
  8. {
  9. "name": "Matthias Sommerfeld",
  10. "email": "mso@phlylabs.de",
  11. "role": "Developer"
  12. }
  13. ],
  14. "require": {
  15. "ext-pcre": "*",
  16. "php": ">=5.6.0"
  17. },
  18. "repositories": {
  19. "type": "vcs",
  20. "url": "https://github.com/phlylabs/idna-convert.git"
  21. },
  22. "extra": {
  23. "branch-alias": {
  24. "dev-master": "1.0.x-dev"
  25. }
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Mso\\IdnaConvert\\": "src"
  30. }
  31. }
  32. }