forked from ArrayAccess/RDAP-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.26 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
{
"name": "frdl/oid-connect-rdap",
"description": "OID-Connect RDAP Client (Whois via RDAP)",
"license": ["GPL-3.0-or-later", "MIT"],
"keywords": [
"rdap",
"whois",
"rdap-client",
"rdap-php",
"asn",
"ip",
"nameserver",
"oid",
"weid",
"oid-connect"
],
"require": {
"php": ">= 8.1",
"ext-intl": "*",
"ext-json": "*",
"metaregistrar/rdap-client" : "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.2",
"slevomat/coding-standard": "^8.13",
"gbxyz/rdap-bootstrap-server" : "*"
},
"provide": {
"arrayaccess/rdap-client" : "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"airmad/*": true,
"civicrm/*": true,
"composer/*": true,
"frdl/*": true,
"webfan3/*": true,
"kylekatarnls/update-helper": true,
"smoren/mushroom-hook-manage" :true
}
},
"autoload": {
"psr-4": {
"ArrayAccess\\RdapClient\\" : "src/",
"Webfan\\RDAPClient\\" : "src/Webfan/",
"Webfan\\RDAP\\" : "src/Webfan/RDAP/"
}
}
}