PHPackages                             sandwave-io/epp-client-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. sandwave-io/epp-client-php

AbandonedArchivedLibrary

sandwave-io/epp-client-php
==========================

A base EPP Client that complies with RFC 5730, 5731 and 5733.

615[4 issues](https://github.com/sandwave-io/epp-client-php/issues)PHP

Since Sep 7Pushed 1y ago5 watchersCompare

[ Source](https://github.com/sandwave-io/epp-client-php)[ Packagist](https://packagist.org/packages/sandwave-io/epp-client-php)[ RSS](/packages/sandwave-io-epp-client-php/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependenciesVersions (4)Used By (0)

[![](https://user-images.githubusercontent.com/60096509/91668964-54ecd500-eb11-11ea-9c35-e8f0b20b277a.png)](https://sandwave.io)

EPP Client (PHP)
================

[](#epp-client-php)

[![Codecov](https://camo.githubusercontent.com/49b7809d0e16d5497e7a38fb6cdf70da1e2f84cff91ec84a51c800cbbd02d8be/68747470733a2f2f636f6465636f762e696f2f67682f73616e64776176652d696f2f6570702d636c69656e742d7068702f6272616e63682f6d61737465722f67726170682f62616467652e7376673f746f6b656e3d435757494657524b5a43)](https://codecov.io/gh/sandwave-io/epp-client-php)[![GitHub Workflow Status](https://camo.githubusercontent.com/35d4ada247f4e7318ccc53bcf559f29caa08a0f97dfef937180a00ad2779c8ee/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f73616e64776176652d696f2f6570702d636c69656e742d7068702f63692e796d6c3f6272616e63683d6d61696e)](https://github.com/sandwave-io/epp-client-php/actions)[![Packagist PHP Version Support](https://camo.githubusercontent.com/67ddda41ce9bf4d6cf3d2ec981f7a833f072a3ac28c9b54b8bab029d06cfd5a6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f73616e64776176652d696f2f6570702d636c69656e742d706870)](https://packagist.org/packages/sandwave-io/epp-client-php)[![Packagist PHP Version Support](https://camo.githubusercontent.com/ac457e3e1a2149fb4621b8e914b5ddcd13cfdf45f5efb725c3394833942355ed/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73616e64776176652d696f2f6570702d636c69656e742d706870)](https://packagist.org/packages/sandwave-io/epp-client-php)[![Packagist Downloads](https://camo.githubusercontent.com/3b6a85118a2616100f973f171b6c0ccc62b80a7408b96cd58e8fcd434ea617f0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73616e64776176652d696f2f6570702d636c69656e742d706870)](https://packagist.org/packages/sandwave-io/epp-client-php)

Support
-------

[](#support)

This client implements several registries using their EPP API. The base implementation complies with the following RFCs:

- [RFC 5730](https://tools.ietf.org/html/rfc5730)
- [RFC 5731](https://tools.ietf.org/html/rfc5731)
- [RFC 5733](https://tools.ietf.org/html/rfc5733)

The following registries are supported:

- [**SIDN**](https://sidn.nl) (.nl)

Are you missing functionality? Feel free to create an issue, or hit us up with a pull request.

How to use
----------

[](#how-to-use)

```
composer require sandwave-io/epp-client-php
```

```
use SandwaveIo\EppClient\Epp\Connection;
use SandwaveIo\EppClient\Epp\ConnectionDriver\HttpsConnectionDriver;
use SandwaveIo\EppClient\Services\SidnService;

$driver = new HttpsConnectionDriver('test.domain-registry.nl', 12345);
$service = new SidnService(new Connection($driver), 'admin', 'secret');

$availability = $service->checkDomains(['example.com', 'example.net', 'example.org']);

foreach ($availability as $domainCheck) {
    if ($domainCheck->isAvailable) {
        echo "Domain: {$domainCheck->domain} AVAILABLE\n";
    } else {
        echo "Domain: {$domainCheck->domain} TAKEN. Reason: {$domainCheck->reason}\n";
    }
}
```

How to contribute
-----------------

[](#how-to-contribute)

Feel free to create a PR if you have any ideas for improvements. Or create an issue.

- When adding code, make sure to add tests for it (phpunit).
- Make sure the code adheres to our coding standards (use php-cs-fixer to check/fix).
- Also make sure PHPStan does not find any bugs.

```
vendor/bin/php-cs-fixer fix

vendor/bin/phpstan analyze

vendor/bin/phpunit --coverage-text
```

These tools will also run in GitHub actions on PR's and pushes on master.

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 Bus Factor1

Top contributor holds 88.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/13864206?v=4)[sandwave](/maintainers/sandwave)[@sandwave](https://github.com/sandwave)

---

Top Contributors

[![FrontEndCoffee](https://avatars.githubusercontent.com/u/16303480?v=4)](https://github.com/FrontEndCoffee "FrontEndCoffee (79 commits)")[![ThomasRedpanda](https://avatars.githubusercontent.com/u/48917857?v=4)](https://github.com/ThomasRedpanda "ThomasRedpanda (4 commits)")[![paulsandwavebot](https://avatars.githubusercontent.com/u/181111594?v=4)](https://github.com/paulsandwavebot "paulsandwavebot (3 commits)")[![arnowest](https://avatars.githubusercontent.com/u/827502?v=4)](https://github.com/arnowest "arnowest (1 commits)")[![markdingemanse](https://avatars.githubusercontent.com/u/5897369?v=4)](https://github.com/markdingemanse "markdingemanse (1 commits)")[![radriaanse](https://avatars.githubusercontent.com/u/5745445?v=4)](https://github.com/radriaanse "radriaanse (1 commits)")

---

Tags

eppepp-clientphprfc5730rfc5731rfc5733sidn

### Embed Badge

![Health badge](/badges/sandwave-io-epp-client-php/health.svg)

```
[![Health](https://phpackages.com/badges/sandwave-io-epp-client-php/health.svg)](https://phpackages.com/packages/sandwave-io-epp-client-php)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
