-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·38 lines (38 loc) · 1004 Bytes
/
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
{
"name": "rowbot/punycode",
"description": "A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA).",
"keywords": ["punycode", "rfc3492", "rfc-3492"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Trevor Rowbotham",
"role": "Developer",
"homepage": "https://trowbotham.com"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Rowbot\\Punycode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rowbot\\Punycode\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"ext-mbstring": "*",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.5.1"
}
}