composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "league/uri-interfaces",
  3. "type": "library",
  4. "description" : "Common interfaces and classes for URI representation and interaction",
  5. "keywords": [
  6. "url",
  7. "uri",
  8. "rfc3986",
  9. "rfc3987",
  10. "rfc6570",
  11. "psr-7",
  12. "parse_url",
  13. "http",
  14. "https",
  15. "ws",
  16. "ftp",
  17. "data-uri",
  18. "file-uri",
  19. "parse_str",
  20. "query-string",
  21. "querystring",
  22. "hostname"
  23. ],
  24. "license": "MIT",
  25. "homepage": "https://uri.thephpleague.com",
  26. "authors": [
  27. {
  28. "name" : "Ignace Nyamagana Butera",
  29. "email" : "nyamsprod@gmail.com",
  30. "homepage" : "https://nyamsprod.com"
  31. }
  32. ],
  33. "funding": [
  34. {
  35. "type": "github",
  36. "url": "https://github.com/sponsors/nyamsprod"
  37. }
  38. ],
  39. "require": {
  40. "php" : "^8.1",
  41. "ext-filter": "*",
  42. "psr/http-message": "^1.1 || ^2.0",
  43. "psr/http-factory": "^1"
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "League\\Uri\\": ""
  48. }
  49. },
  50. "suggest": {
  51. "ext-bcmath": "to improve IPV4 host parsing",
  52. "ext-gmp": "to improve IPV4 host parsing",
  53. "ext-intl": "to handle IDN host with the best performance",
  54. "php-64bit": "to improve IPV4 host parsing",
  55. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  56. },
  57. "extra": {
  58. "branch-alias": {
  59. "dev-master": "7.x-dev"
  60. }
  61. },
  62. "support": {
  63. "forum": "https://thephpleague.slack.com",
  64. "docs": "https://uri.thephpleague.com",
  65. "issues": "https://github.com/thephpleague/uri-src/issues"
  66. },
  67. "config": {
  68. "sort-packages": true
  69. }
  70. }