PHPackages                             pinga/tembo - 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. pinga/tembo

ActiveLibrary

pinga/tembo
===========

A simple PHP EPP client

v1.1.18(2mo ago)281.1k↑15.4%41MITPHPPHP ^8.3

Since Jan 10Pushed 1mo ago5 watchersCompare

[ Source](https://github.com/getnamingo/epp-client)[ Packagist](https://packagist.org/packages/pinga/tembo)[ RSS](/packages/pinga-tembo/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)DependenciesVersions (75)Used By (1)

Namingo EPP Client
==================

[](#namingo-epp-client)

An open-source PHP EPP client supporting 41 domain registry backends. Works with any PHP framework and is fully customizable.

[![StandWithUkraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md)

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md)

Introduction
------------

[](#introduction)

**Namingo EPP** is an open-source PHP library and tool for working with EPP (Extensible Provisioning Protocol). It provides everything you need to connect to EPP servers, manage domains, and build custom integrations.

- Works as both a **library** for developers and a **ready-to-use client**
- Includes **Loom**, **WHMCS** and **FOSSBilling** registrar modules for easy automation
- Supports EPP extensions and can be **extended to new backends** with minimal effort
- Simple to integrate into any PHP project

With Namingo EPP you can start small, customize as you go, and adapt it to the specific requirements of any domain registry.

Features
--------

[](#features)

### Supported EPP Commands

[](#supported-epp-commands)

domaincontacthostsessioncheck✅✅✅login ✅checkClaims✅N/AN/Alogout ✅checkFee✅N/AN/Apoll ✅info✅✅✅hello ✅create✅✅✅keep-alive ✅createDNSSEC✅N/AN/Anew password ✅createClaims✅N/AN/AupdateN/A✅✅updateNS✅N/AN/AupdateContact✅N/AN/AupdateAuthinfo✅✅N/AupdateStatus✅✅✅updateDNSSEC✅N/AN/Arenew✅N/AN/Adelete✅✅✅transferRequest✅✅N/AtransferQuery✅✅N/AtransferApprove✅✅N/AtransferReject✅✅N/AtransferCancel✅✅N/Argp:restore✅N/AN/Argp:report✅N/AN/A### Supported Connection Types

[](#supported-connection-types)

typestatusEPP over TLS/TCP✅EPP over HTTPS✅RPP🚧RRI✅TMCH✅REGRR❌### Registry Support (41 backends and counting)

[](#registry-support-41-backends-and-counting)

RegistryTLDsExtensionStatusTODOGeneric RFC EPPany✅AFNIC.fr/othersFR✅CARNET.hrHR✅Caucasus Online.geGE✅CentralNicall✅CoCCAall✅CORE/Knippall✅DENIC.de✅Domicilium.im✅DOMREG.ltLT✅DRS.UAall✅EURid.euEU✅FORTH-ICS.gr, .ελGR✅FRED.cz/anyFRED✅domain update NS/DNSSECGoDaddy Registryall✅Google Nomulusall✅Hostmaster.uaUA✅Identity Digitalall✅IIS.se, .nuSE✅Internet.ee.eeEE✅ISNIC.isIS✅IT.COMall✅HKIRC.hkHK✅NASK.plPL✅Namingoall✅NIC Chile.cl✅NIC Mexico.mxMX✅NIC.LV.lvLV✅NORID.noNO✅.PT.ptPT✅Registro.it.itIT✅Regtonsall✅RoTLD.ro✅RyCEall✅SIDNall✅SWITCH.ch, .li✅Traficom.fiFI✅Tucows Registryall✅VerisignallVRSN✅ZADNA.za✅ZDNSall✅### Integration with billing systems

[](#integration-with-billing-systems)

Would you like to see any registry added as a WHMCS/FOSSBilling module? Or an EPP module for any other billing system? Simply create an [issue](https://github.com/getnamingo/epp-client/issues) in this project and let us know.

PlatformTLDsProjectWHMCS EPP Registrarany[whmcs-epp-registrar](https://github.com/getnamingo/whmcs-epp-registrar)FOSSBilling EPP Registrarany[fossbilling-epp-registrar](https://github.com/getnamingo/fossbilling-epp-registrar)Installation
------------

[](#installation)

To begin, follow these steps for setting up the EPP Client. This installation process is optimized for a VPS running Ubuntu 22.04/24.04 or Debian 12/13.

### 1. Install PHP

[](#1-install-php)

#### Ubuntu 22.04 / 24.04

[](#ubuntu-2204--2404)

```
apt update
apt install -y curl software-properties-common ufw

add-apt-repository -y ppa:ondrej/php
apt update

apt install -y \
  composer git net-tools unzip wget whois \
  php8.3-bz2 php8.3-cli php8.3-common php8.3-curl \
  php8.3-gmp php8.3-intl php8.3-mbstring php8.3-xml
```

#### Debian 12 / 13

[](#debian-12--13)

```
apt update
apt install -y ca-certificates curl gnupg lsb-release ufw

curl -fsSL https://packages.sury.org/php/apt.gpg \
  | gpg --dearmor -o /usr/share/keyrings/sury-php.gpg

echo "deb [signed-by=/usr/share/keyrings/sury-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" \
  > /etc/apt/sources.list.d/sury-php.list

apt update

apt install -y \
  composer git net-tools unzip wget whois \
  php8.3-bz2 php8.3-cli php8.3-common php8.3-curl \
  php8.3-gmp php8.3-intl php8.3-mbstring php8.3-xml
```

### 2. Install EPP Client Package

[](#2-install-epp-client-package)

Navigate to your project directory and run the following command:

```
composer require pinga/tembo
```

### 3. Configure Access to the Registry

[](#3-configure-access-to-the-registry)

Edit the `examples/Connection.php` file to configure your registry access credentials (host, port, username, password, certificates, etc.).

If the registry requires SSL certificates and you don't have them, refer to the troubleshooting section for steps to generate `cert.pem` and `key.pem`.

### 4. Detailed Logging

[](#4-detailed-logging)

The EPP Client supports full logging of raw XML commands and responses via a PSR-3 compatible logger. For detailed debugging (including `` and `` XML), we recommend using Monolog.

Run this in your project root:

```
composer require monolog/monolog
```

Check `examples/Connection.php` for details on how to enable logger. Make sure you have `use` statements for the selected package.

Using the EPP Client
--------------------

[](#using-the-epp-client)

- You can use the commands provided in the `examples` directory to interact with the EPP server.
- Alternatively, include the `Connection.php` file in your project and build your custom application using the `EppClient` class and its functions.

Troubleshooting
---------------

[](#troubleshooting)

### EPP Server Access

[](#epp-server-access)

If you're unsure whether your system can access the EPP server, you can test the connection using OpenSSL. Try one or both of the following commands:

1. Basic Connectivity Test:

```
openssl s_client -showcerts -connect epp.example.com:700
```

2. Test with Client Certificates:

```
openssl s_client -connect epp.example.com:700 -CAfile cacert.pem -cert cert.pem -key key.pem
```

Replace `epp.example.com` with your EPP server's hostname and adjust the paths to your certificate files (`cacert.pem`, `cert.pem`, and `key.pem`) as needed. These tests can help identify issues with SSL/TLS configurations or network connectivity.

### Generating an SSL Certificate and Key

[](#generating-an-ssl-certificate-and-key)

If you do not have an SSL certificate and private key for secure communication with the registry, you can generate one using OpenSSL.

```
openssl genrsa -out key.pem 2048
openssl req -new -x509 -key key.pem -out cert.pem -days 365
```

**Note:** For production environments, it's recommended to use a certificate signed by a trusted Certificate Authority (CA) instead of a self-signed certificate.

### Need More Help?

[](#need-more-help)

If the steps above don’t resolve your issue, refer to the EPP Client logs (`/path/to/tembo/log`) to identify the specific problem.

Benchmarking an EPP Server
--------------------------

[](#benchmarking-an-epp-server)

To run tests against an EPP server using the Namingo EPP client, follow these steps:

### 1. Configure Your Connection

[](#1-configure-your-connection)

Edit the file `benchmark/Connection.php` - this file should contain the connection details for the server you want to test. It uses the same format as `examples/Connection.php`.

### 2. Run the Benchmark

[](#2-run-the-benchmark)

From the root directory, run `php benchmark/Benchmark.php` - this will execute a series of domain check commands to test your server’s response and performance.

### 3. Customize the Benchmark

[](#3-customize-the-benchmark)

You can modify `benchmark/Benchmark.php` to:

- Add your own EPP commands
- Change the number of requests
- Adjust the test logic

Use this script as a starting point to test and tune your EPP server setup.

Support
-------

[](#support)

Your feedback and inquiries are invaluable to Namingo's evolutionary journey. If you need support, have questions, or want to contribute your thoughts:

- **Email**: Feel free to reach out directly at .
- **Discord**: Or chat with us on our [Discord](https://discord.gg/97R9VCrWgc) channel.
- **GitHub Issues**: For bug reports or feature requests, please use the [Issues](https://github.com/getnamingo/epp-client/issues) section of our GitHub repository.
- **GitHub Discussions**: For general discussions, ideas, or to connect with our community, visit the [Discussion](https://github.com/getnamingo/epp-client/discussions) page on our GitHub project.

We appreciate your involvement and patience as Namingo continues to grow and adapt.

Support This Project
--------------------

[](#support-this-project)

If you find Namingo EPP Client useful, consider donating:

- [Donate via Stripe](https://donate.stripe.com/7sI2aI4jV3Offn28ww)
- BTC: `bc1q9jhxjlnzv0x4wzxfp8xzc6w289ewggtds54uqa`
- ETH: `0x330c1b148368EE4B8756B176f1766d52132f0Ea8`

Licensing
---------

[](#licensing)

Namingo EPP Client is licensed under the MIT License.

###  Health Score

57

—

FairBetter than 98% of packages

Maintenance93

Actively maintained with recent releases

Popularity29

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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.

###  Release Activity

Cadence

Every ~16 days

Recently: every ~2 days

Total

72

Last Release

87d ago

Major Versions

v0.9.2 → v1.0.02024-08-27

PHP version history (3 changes)v0.1PHP ^8.1

v0.8.7PHP ^8.2

v1.1.4PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/f8f87416e80fdfb906a1e9d206c9a20584ae27bdd20815170b69efd49e8e9436?d=identicon)[getpinga](/maintainers/getpinga)

---

Top Contributors

[![getpinga](https://avatars.githubusercontent.com/u/121483313?v=4)](https://github.com/getpinga "getpinga (414 commits)")

---

Tags

cctldeppepp-clientepp-protocolepp-registryforthgtldnaskphpregistry

### Embed Badge

![Health badge](/badges/pinga-tembo/health.svg)

```
[![Health](https://phpackages.com/badges/pinga-tembo/health.svg)](https://phpackages.com/packages/pinga-tembo)
```

PHPackages © 2026

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