https://github.com/struzik-vladislav/epp-socket-connection
Socket connection for communicating with EPP(Extensible Provisioning Protocol) servers
https://github.com/struzik-vladislav/epp-socket-connection
connection epp socket socket-connection
Last synced: 4 months ago
JSON representation
Socket connection for communicating with EPP(Extensible Provisioning Protocol) servers
- Host: GitHub
- URL: https://github.com/struzik-vladislav/epp-socket-connection
- Owner: struzik-vladislav
- License: mit
- Created: 2017-05-15T21:54:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-02-23T17:17:25.000Z (over 1 year ago)
- Last Synced: 2025-11-07T03:18:57.243Z (7 months ago)
- Topics: connection, epp, socket, socket-connection
- Language: PHP
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EPP Socket Connection
[](https://packagist.org/packages/struzik-vladislav/epp-socket-connection)
[](https://packagist.org/packages/struzik-vladislav/epp-socket-connection/stats)
[](LICENSE)
[](https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md)
Socket connection for communicating with EPP(Extensible Provisioning Protocol) servers.
Connection for [struzik-vladislav/epp-client](https://github.com/struzik-vladislav/epp-client) library.
## Usage
```php
uri = 'tls://epp.example.com:700';
$connectionConfig->timeout = 30;
$connectionConfig->context = [
'ssl' => [
'local_cert' => __DIR__.'/certificate.pem',
],
];
$connection = new StreamSocketConnection($connectionConfig, new NullLogger());
$connection->open();
echo $connection->read();
$connection->close();
```