-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.81 KB
/
Copy pathcomposer.json
File metadata and controls
66 lines (66 loc) · 1.81 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
60
61
62
63
64
65
66
{
"name": "hiqdev/rdap",
"type": "library",
"description": "Registration Data Access Protocol – core objects implementation package according to the RFC 7483",
"keywords": [
"rdap",
"php",
"whois"
],
"homepage": "https://github.com/hiqdev/rdap",
"license": "BSD-3-Clause",
"support": {
"email": "support@hiqdev.com",
"source": "https://github.com/hiqdev/rdap",
"issues": "https://github.com/hiqdev/rdap/issues"
},
"authors": [
{
"name": "Andrii Vasyliev",
"role": "Project lead",
"email": "sol@hiqdev.com",
"homepage": "http://hipanel.com/"
},
{
"name": "Dmitry Naumenko",
"role": "Lead backend developer",
"email": "d.naumenko.a@gmail.com",
"homepage": "http://silverfire.me/"
},
{
"name": "Andrey Klochok",
"role": "Lead frontend developer",
"email": "andreyklochok@gmail.com",
"homepage": "http://hiqdev.com/"
},
{
"name": "Yuriy Myronchuk",
"role": "QA Lead",
"email": "bladeroot@gmail.com",
"homepage": "http://hiqdev.com/"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-intl": "*",
"ext-json": "*",
"symfony/serializer": "^6.4",
"symfony/property-info": "^6.4",
"symfony/property-access": "^6.4",
"phpdocumentor/reflection-docblock": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"hiqdev\\rdap\\core\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"hiqdev\\rdap\\core\\tests\\": "tests"
}
}
}