Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 1.24 KB

README.md

File metadata and controls

54 lines (33 loc) · 1.24 KB

yocLib - EPP (PHP)

This yocLibrary enables your project to send and receive with EPP (Extensible Provisioning Protocol) in PHP.

Status

PHP Composer codecov

Installation

composer require yocto/yoclib-epp

Usage

Reading

use YOCLIB\EPP\EPPDocumentHelper;
use YOCLIB\EPP\Connections\EPPTCPConnection;
use YOCLIB\EPP\Elements\EPPEppElement;

$conn = new EPPTCPConnection(new SIDNTest);

$doc = $conn->readDocument();

/**@var EPPEppElement $epp*/
$epp = $doc->documentElement;

$hello = $epp->getHello();

Writing

use YOCLIB\EPP\EPPDocumentHelper;
use YOCLIB\EPP\EPPNamespaces;
use YOCLIB\EPP\Connections\EPPTCPConnection;
use YOCLIB\EPP\Registries\SIDNTest;

$doc = EPPDocumentHelper::createEPPDocument();

$epp = $doc->createElementNS(EPPNamespaces::EPP_1_0,'epp');

$hello = $doc->createElementNS(EPPNamespaces::EPP_1_0,'hello');

$epp->appendChild($hello);

$doc->appendChild($epp);

$conn = new EPPTCPConnection(new SIDNTest);

$xml = $conn->writeDocument($doc);