forked from algo26-matthias/idna-convert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.15 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
{
"name": "froxlor/idna-convert-legacy",
"description": "A library for encoding and decoding internationalized domain names",
"license": "LGPL-2.1+",
"keywords": ["PHP","IDN","IDNA"],
"homepage": "http://idnaconv.net/",
"authors": [
{
"name": "Matthias Sommerfeld",
"email": "matthias.sommerfeld@algo26.de",
"role": "Developer"
},
{
"name": "Michael Kaufmann (d00p)",
"email": "d00p@froxlor.org",
"role": "Developer"
}
],
"require": {
"ext-pcre": "*",
"php": ">=7.2.0",
"jakeasmith/http_build_url": "^1"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0"
},
"suggest": {
"ext-mbstring": "Install ext/mbstring for using input / output other than UTF-8 or ISO-8859-1",
"ext-iconv": "Install ext/iconv for using input / output other than UTF-8 or ISO-8859-1"
},
"autoload": {
"psr-4": {
"Algo26\\IdnaConvert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Algo26\\IdnaConvert\\Test\\": "tests/"
}
}
}