-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
62 lines (62 loc) · 1.71 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "league/uri-components",
"type": "library",
"description" : "URI components manipulation library",
"keywords": [
"url",
"uri",
"rfc3986",
"components",
"scheme",
"userinfo",
"host",
"port",
"authority",
"path",
"query",
"fragment",
"modifier",
"middleware"
],
"license": "MIT",
"homepage": "http://uri.thephpleague.com",
"authors": [
{
"name" : "Ignace Nyamagana Butera",
"email" : "[email protected]",
"homepage" : "https://nyamsprod.com"
}
],
"require": {
"php": "^8.1",
"league/uri": "^7.5"
},
"suggest": {
"ext-bcmath": "to improve IPV4 host parsing",
"ext-mbstring": "to use the sorting algorithm of URLSearchParams",
"ext-fileinfo": "to create Data URI from file contennts",
"ext-gmp": "to improve IPV4 host parsing",
"ext-intl": "to handle IDN host with the best performance",
"jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
"php-64bit": "to improve IPV4 host parsing",
"symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
},
"autoload": {
"psr-4": {
"League\\Uri\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
},
"support": {
"forum": "https://thephpleague.slack.com",
"docs": "https://uri.thephpleague.com",
"issues": "https://github.com/thephpleague/uri-src/issues"
},
"config": {
"sort-packages": true
}
}