Skip to content

Commit

Permalink
Readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
metaregistrar committed Oct 27, 2017
1 parent fc8fc23 commit 0be9b07
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,23 @@ Currently supported registries:
- dotAmsterdam
- Donuts
- EurID (.eu)
- DNS Belgium (.be .vlaanderen .brussels)
- Donuts
- .CO.NL
- dotFRL
- IIS (.nu and .se)
- CarDNS (.hr)
- IIS (.se and .nu)
- Metaregistrar
- Nic.AT (.at)
- Key Systems RRPPROXY
- .PT
- Switch (.ch)
- Openprovider
- Ficora (.fi)
- DNS.PT (.pt)
- Norid (.no)
- Arnes (.si)


All code changes are tested automatically with the phpunit tests in the Tests directory
Expand Down
23 changes: 23 additions & 0 deletions Registries/siEppConnection/eppConnection.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php
namespace Metaregistrar\EPP;
class siEppConnection extends eppConnection
{
public function __construct($logging = false, $settingsfile = null)
{
parent::__construct($logging, $settingsfile);
parent::setServices(array(
'urn:ietf:params:xml:ns:domain-1.0' => 'domain',
'urn:ietf:params:xml:ns:host-1.0' => 'host',
'urn:ietf:params:xml:ns:contact-1.0' => 'contact'
));
parent::setLanguage('en-US');
parent::setVersion('1.0');
parent::enableDnssec();

parent::useExtension('dnssi-1.2');
// These extensions are not supported yet but will be sent to the registry
parent::addExtension("registrar", "http://www.arnes.si/xml/epp/registrar-1.0");
parent::addExtension("DNScheck", "http://www.arnes.si/xml/epp/DNScheck-1.0");

}
}

0 comments on commit 0be9b07

Please sign in to comment.