{"id":21373050,"url":"https://github.com/hiqdev/rdap","last_synced_at":"2025-07-13T07:32:52.944Z","repository":{"id":56984625,"uuid":"203795465","full_name":"hiqdev/rdap","owner":"hiqdev","description":"Registration Data Access Protocol – core domain objects","archived":false,"fork":false,"pushed_at":"2020-01-15T17:13:31.000Z","size":150,"stargazers_count":5,"open_issues_count":1,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-07-08T23:46:53.736Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hiqdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-08-22T12:57:10.000Z","updated_at":"2021-12-12T19:08:39.000Z","dependencies_parsed_at":"2022-08-21T09:10:37.945Z","dependency_job_id":null,"html_url":"https://github.com/hiqdev/rdap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hiqdev%2Frdap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hiqdev%2Frdap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hiqdev%2Frdap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hiqdev%2Frdap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hiqdev","download_url":"https://codeload.github.com/hiqdev/rdap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225865566,"owners_count":17536477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest"],"created_at":"2024-11-22T08:24:52.636Z","updated_at":"2024-11-22T08:24:53.153Z","avatar_url":"https://github.com/hiqdev.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Registration Data Access Protocol – core objects implementation package according to the RFC 7483\n\n[![Latest Stable Version](https://poser.pugx.org/hiqdev/rdap/v/stable)](https://packagist.org/packages/hiqdev/rdap)\n[![Total Downloads](https://poser.pugx.org/hiqdev/rdap/downloads)](https://packagist.org/packages/hiqdev/rdap)\n[![Build Status](https://img.shields.io/travis/hiqdev/rdap.svg)](https://travis-ci.org/hiqdev/rdap)\n[![Scrutinizer Code Coverage](https://img.shields.io/scrutinizer/coverage/g/hiqdev/rdap.svg)](https://scrutinizer-ci.com/g/hiqdev/rdap/)\n[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/hiqdev/rdap.svg)](https://scrutinizer-ci.com/g/hiqdev/rdap/)\n\n## RDAP server library\n\nThis PHP library makes it very easy to build an RDAP server that talks with your registry back-end.\n\n# Features\n* Include this library in your PHP web application to significantly ease implementing an RDAP server and client\n* Can be combined with any back-end by simply implementing one or more methods\n* All you need to do is retrieve the data and populate some PHP objects\n\n## Installation\n\nThe preferred way to install this project is through [composer](http://getcomposer.org/download/).\n\n```sh\nphp composer.phar require hiqdev/rdap:dev-master\n```\n\nor add\n\n```\n\"hiqdev/rdap\": \"dev-master\"\n```\nto the require section of your composer.json.\n\n# Details\n\nThis library understands and supports the following RFC's:\n\n* [RFC-7480 : HTTP Usage in the Registration Data Access Protocol (RDAP)](http://tools.ietf.org/html/rfc7480)\n* [RFC-7481 : Security Services for the Registration Data Access Protocol (RDAP)](http://tools.ietf.org/html/rfc7481)\n* [RFC-7482 : Registration Data Access Protocol (RDAP) Query Format](http://tools.ietf.org/html/rfc7482)\n* [RFC-7483 : JSON Responses for the Registration Data Access Protocol (RDAP)](http://tools.ietf.org/html/rfc7483)\n* [RFC-7484 : Finding the Authoritative Registration Data (RDAP) Service](http://tools.ietf.org/html/rfc7484)\n\n# How it works\n\n* The library contains a number of PHP objects representing the data structures defined in rfc7483\n* You need to write the code to populate these objects whenever a query comes in\n\n# How to use\n\nWe have created a sample project which could help you with your implementation. You can find both the source and instructions in the following project: [rdap-server-example](https://github.com/hiqdev/rdap-server-example)\n\n## Simple usage:\n    \n    use hiqdev\\rdap\\core\\Infrastructure\\Provider\\DomainProviderInterface;\n    use hiqdev\\rdap\\core\\Domain\\Constant\\Role;\n    use hiqdev\\rdap\\core\\Domain\\Entity\\Domain;\n    use hiqdev\\rdap\\core\\Domain\\ValueObject\\DomainName;\n\n    class DomainProvider implements DomainProviderInterface\n    {\n        /** @var object */\n        private $domainInfo;\n        \n        public function get(DomainName $domainName): Domain\n        {\n            $domain = new Domain(DomainName::of($this-\u003edomainInfo-\u003edomainName));\n            $domain-\u003esetPort43(DomainName::of($this-\u003edomainInfo-\u003erdapServer));\n            $domain-\u003eaddEntity($this-\u003edomainInfo-\u003egetEntity(Role::REGISTRANT()));\n            \n            return $domain;\n        }\n    }\n\n## License\n\nThis project is released under the terms of the BSD-3-Clause [license](LICENSE).\nRead more [here](http://choosealicense.com/licenses/bsd-3-clause).\n\nCopyright © 2019, HiQDev (http://hiqdev.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhiqdev%2Frdap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhiqdev%2Frdap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhiqdev%2Frdap/lists"}