first commit

This commit is contained in:
pgmr3
2023-12-22 17:21:31 +01:00
commit dde03b1d27
57 changed files with 6287 additions and 0 deletions

28
RDAP/composer.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "metaregistrar/rdap-client",
"description": "A php client to query rdap (formerly whois) services",
"minimum-stability": "stable",
"license": "proprietary",
"require": {
"php": ">=7.2",
"ext-json": "*"
},
"authors": [
{
"name": "Ewout de Graaf",
"email": "ewout@metaregistrar.com"
}
],
"autoload": {
"psr-4": {
"Metaregistrar\\RDAP\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^8",
"psr/simple-cache": "^1.0"
},
"suggest": {
"psr/simple-cache": "For using the metadata cache."
}
}