forked from mlocati/idna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 1.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "mlocati/idna",
"description": "Library for International Domain Names (IDNA) 2008",
"keywords": [
"idn",
"idna",
"idna2008",
"idna2003",
"punycode",
"International",
"internationalization",
"internationalized",
"domain",
"domains",
"name",
"names",
"domain name",
"domain names",
"international domain",
"international domains",
"international name",
"international names",
"international domain name",
"international domain names",
"internationalized domain",
"internationalized domains",
"internationalized name",
"internationalized names",
"internationalized domain name",
"internationalized domain names",
"unicode",
"ascii",
"ansi",
"i18n",
"l10n"
],
"homepage": "https://github.com/mlocati/idna",
"license": "MIT",
"authors": [
{
"name": "Michele Locati",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/mlocati/idna/issues",
"source": "https://github.com/mlocati/idna"
},
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.5 || ^9.6 || ^10"
},
"autoload": {
"psr-4": {
"MLocati\\IDNA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MLocati\\IDNA\\Test\\": "test/src/",
"MLocati\\IDNA\\Tests\\": "test/tests/"
}
},
"config": {
"optimize-autoloader": true
},
"scripts": {
"test": "phpunit"
},
"bin": [
"bin/create-idnamap"
]
}