-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.78 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.78 KB
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
{
"name": "league/uri-polyfill",
"description": "Polyfill backporting PHP 8.5+ native RFC3986/WHATWG URI features to lower PHP versions",
"keywords": [
"uri",
"url",
"rfc3986",
"whatwg",
"polyfill",
"parser",
"resolver",
"equivalence",
"compatibiliy",
"portable"
],
"license": "MIT",
"authors": [
{
"name": "Ignace Nyamagana Butera",
"email": "nyamsprod@gmail.com",
"homepage": "https://github.com/nyamsprod/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"League\\Uri\\": ""
},
"classmap": [
"lib"
]
},
"require": {
"php": ">=8.1",
"league/uri-interfaces": ">=7.8.1",
"rowbot/url": "^4.1.0"
},
"provide": {
"ext-uri": "*"
},
"suggest": {
"ext-intl": "to handle IDN host with the best performance",
"jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain",
"league/uri-components": "to provide additional tools to manipulate URI objects components",
"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",
"symfony/polyfill-php82": "to use the SensitiveParameter polyfill in PHP8.1",
"league/uri-polyfill" : "to backport the PHP URI extension for older versions of PHP",
"rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification"
},
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
},
"config": {
"sort-packages": true
}
}