-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 1.14 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
{
"name": "arrayaccess/rdap-client",
"description": "Registration Data Access Protocol (RDAP) Client For PHP",
"license": ["GPL-3.0-or-later"],
"keywords": [
"rdap",
"whois",
"rdap-client",
"rdap-php",
"php-rdap",
"asn",
"ip",
"nameserver"
],
"authors": [
{
"name": "ArrayIterator",
"email": "me@arrayiterator.com",
"homepage": "https://www.arrayiterator.com",
"role": "developer"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/arrayiterator"
}
],
"require": {
"php": ">= 8.1",
"ext-intl": "*",
"ext-json": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.11.2",
"phpstan/phpstan": "^2.1.0",
"slevomat/coding-standard": "^8.15.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"ArrayAccess\\RdapClient\\" : "src/"
}
}
}