{"id":42418299,"url":"https://github.com/sandwave-io/epp-client-php","last_synced_at":"2026-01-28T02:09:17.193Z","repository":{"id":62540182,"uuid":"291722080","full_name":"sandwave-io/epp-client-php","owner":"sandwave-io","description":"A base EPP Client that complies with RFC 5730, 5731 and 5733.","archived":false,"fork":false,"pushed_at":"2024-10-10T13:52:08.000Z","size":194,"stargazers_count":6,"open_issues_count":4,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-07-28T04:24:42.804Z","etag":null,"topics":["epp","epp-client","php","rfc5730","rfc5731","rfc5733","sidn"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sandwave-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-31T13:25:12.000Z","updated_at":"2024-10-10T13:47:08.000Z","dependencies_parsed_at":"2022-11-02T16:16:03.354Z","dependency_job_id":null,"html_url":"https://github.com/sandwave-io/epp-client-php","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sandwave-io/epp-client-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandwave-io%2Fepp-client-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandwave-io%2Fepp-client-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandwave-io%2Fepp-client-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandwave-io%2Fepp-client-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sandwave-io","download_url":"https://codeload.github.com/sandwave-io/epp-client-php/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sandwave-io%2Fepp-client-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28833649,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T23:29:49.665Z","status":"online","status_checked_at":"2026-01-28T02:00:06.943Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["epp","epp-client","php","rfc5730","rfc5731","rfc5733","sidn"],"created_at":"2026-01-28T02:09:16.548Z","updated_at":"2026-01-28T02:09:17.180Z","avatar_url":"https://github.com/sandwave-io.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![](https://user-images.githubusercontent.com/60096509/91668964-54ecd500-eb11-11ea-9c35-e8f0b20b277a.png)](https://sandwave.io)\n\n# EPP Client (PHP)\n\n[![Codecov](https://codecov.io/gh/sandwave-io/epp-client-php/branch/master/graph/badge.svg?token=CWWIFWRKZC)](https://codecov.io/gh/sandwave-io/epp-client-php)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/sandwave-io/epp-client-php/ci.yml?branch=main)](https://github.com/sandwave-io/epp-client-php/actions)\n[![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/sandwave-io/epp-client-php)](https://packagist.org/packages/sandwave-io/epp-client-php)\n[![Packagist PHP Version Support](https://img.shields.io/packagist/v/sandwave-io/epp-client-php)](https://packagist.org/packages/sandwave-io/epp-client-php)\n[![Packagist Downloads](https://img.shields.io/packagist/dt/sandwave-io/epp-client-php)](https://packagist.org/packages/sandwave-io/epp-client-php)\n\n## Support\n\nThis client implements several registries using their EPP API. The base implementation complies with the following RFCs:\n\n* [RFC 5730](https://tools.ietf.org/html/rfc5730)\n* [RFC 5731](https://tools.ietf.org/html/rfc5731)\n* [RFC 5733](https://tools.ietf.org/html/rfc5733)\n\nThe following registries are supported:\n\n* [**SIDN**](https://sidn.nl) (.nl)\n\nAre you missing functionality? Feel free to create an issue, or hit us up with a pull request.\n\n## How to use\n\n```bash\ncomposer require sandwave-io/epp-client-php\n```\n\n```php\nuse SandwaveIo\\EppClient\\Epp\\Connection;\nuse SandwaveIo\\EppClient\\Epp\\ConnectionDriver\\HttpsConnectionDriver;\nuse SandwaveIo\\EppClient\\Services\\SidnService;\n\n$driver = new HttpsConnectionDriver('test.domain-registry.nl', 12345);\n$service = new SidnService(new Connection($driver), 'admin', 'secret');\n\n$availability = $service-\u003echeckDomains(['example.com', 'example.net', 'example.org']);\n\nforeach ($availability as $domainCheck) {\n    if ($domainCheck-\u003eisAvailable) {\n        echo \"Domain: {$domainCheck-\u003edomain} AVAILABLE\\n\";\n    } else {\n        echo \"Domain: {$domainCheck-\u003edomain} TAKEN. Reason: {$domainCheck-\u003ereason}\\n\";\n    }\n}\n```\n\n## How to contribute\n\nFeel free to create a PR if you have any ideas for improvements. Or create an issue.\n\n* When adding code, make sure to add tests for it (phpunit).\n* Make sure the code adheres to our coding standards (use php-cs-fixer to check/fix). \n* Also make sure PHPStan does not find any bugs.\n\n```bash\n\nvendor/bin/php-cs-fixer fix\n\nvendor/bin/phpstan analyze\n\nvendor/bin/phpunit --coverage-text\n\n```\n\nThese tools will also run in GitHub actions on PR's and pushes on master.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandwave-io%2Fepp-client-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsandwave-io%2Fepp-client-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandwave-io%2Fepp-client-php/lists"}