composer.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "league/uri",
  3. "type": "library",
  4. "description" : "URI manipulation library",
  5. "keywords": [
  6. "url",
  7. "uri",
  8. "urn",
  9. "uri-template",
  10. "rfc2141",
  11. "rfc3986",
  12. "rfc3987",
  13. "rfc8141",
  14. "rfc6570",
  15. "psr-7",
  16. "parse_url",
  17. "http",
  18. "https",
  19. "ws",
  20. "ftp",
  21. "data-uri",
  22. "file-uri",
  23. "middleware",
  24. "parse_str",
  25. "query-string",
  26. "querystring",
  27. "hostname"
  28. ],
  29. "license": "MIT",
  30. "homepage": "https://uri.thephpleague.com",
  31. "authors": [
  32. {
  33. "name" : "Ignace Nyamagana Butera",
  34. "email" : "nyamsprod@gmail.com",
  35. "homepage" : "https://nyamsprod.com"
  36. }
  37. ],
  38. "support": {
  39. "forum": "https://thephpleague.slack.com",
  40. "docs": "https://uri.thephpleague.com",
  41. "issues": "https://github.com/thephpleague/uri-src/issues"
  42. },
  43. "funding": [
  44. {
  45. "type": "github",
  46. "url": "https://github.com/sponsors/nyamsprod"
  47. }
  48. ],
  49. "require": {
  50. "php": "^8.1",
  51. "league/uri-interfaces": "^7.8",
  52. "psr/http-factory": "^1"
  53. },
  54. "autoload": {
  55. "psr-4": {
  56. "League\\Uri\\": ""
  57. }
  58. },
  59. "conflict": {
  60. "league/uri-schemes": "^1.0"
  61. },
  62. "suggest": {
  63. "ext-bcmath": "to improve IPV4 host parsing",
  64. "ext-dom": "to convert the URI into an HTML anchor tag",
  65. "ext-fileinfo": "to create Data URI from file contennts",
  66. "ext-gmp": "to improve IPV4 host parsing",
  67. "ext-intl": "to handle IDN host with the best performance",
  68. "ext-uri": "to use the PHP native URI class",
  69. "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain",
  70. "league/uri-components" : "to provide additional tools to manipulate URI objects components",
  71. "league/uri-polyfill" : "to backport the PHP URI extension for older versions of PHP",
  72. "php-64bit": "to improve IPV4 host parsing",
  73. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present",
  74. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification"
  75. },
  76. "extra": {
  77. "branch-alias": {
  78. "dev-master": "7.x-dev"
  79. }
  80. },
  81. "config": {
  82. "sort-packages": true
  83. }
  84. }