File tree Expand file tree Collapse file tree 4 files changed +2169
-6
lines changed Expand file tree Collapse file tree 4 files changed +2169
-6
lines changed Original file line number Diff line number Diff line change @@ -94,12 +94,13 @@ openssl s_client -connect epp.example.com:700 -CAfile cacert.pem -cert cert.pem
9494| TMCH | ✅ |
9595| REGRR | ❌ |
9696
97- ## Registry Support (33 backends and counting)
97+ ## Registry Support (34 backends and counting)
9898
9999| Registry | TLDs | Extension | Status | TODO |
100100| ----------| ----------| ----------| ----------| ----------|
101101| Generic RFC EPP | any | | ✅ | |
102102| AFNIC | .fr/others | FR | ✅ | |
103+ | CARNET | .hr | HR | ✅ | |
103104| Caucasus Online | .ge | | ✅ | |
104105| CentralNic | all | | ✅ | |
105106| CoCCA | all | | ✅ | |
Original file line number Diff line number Diff line change 32323333 'authInfoPw ' => 'ABCLviv@345 ' ,
3434 //'euType' => 'tech',
35+ //'nin_type' => 'person',
36+ //'nin' => '1234567789',
3537 );
3638 $ contactCreate = $ epp ->contactCreate ($ params );
3739
Original file line number Diff line number Diff line change 1414use Pinga \Tembo \Registries \FrEpp ;
1515use Pinga \Tembo \Registries \FredEpp ;
1616use Pinga \Tembo \Registries \GrEpp ;
17+ use Pinga \Tembo \Registries \HkEpp ;
18+ use Pinga \Tembo \Registries \HrEpp ;
1719use Pinga \Tembo \Registries \LvEpp ;
1820use Pinga \Tembo \Registries \NoEpp ;
1921use Pinga \Tembo \Registries \PlEpp ;
2022use Pinga \Tembo \Registries \PtEpp ;
2123use Pinga \Tembo \Registries \SeEpp ;
2224use Pinga \Tembo \Registries \UaEpp ;
23- use Pinga \Tembo \Registries \HkEpp ;
2425use Pinga \Tembo \Registries \VrsnEpp ;
2526
2627class EppRegistryFactory
2728{
2829 public static function create ($ registry )
2930 {
30- switch ($ registry ) {
31+ switch ($ registry ) {
3132 case 'EU ' :
3233 return new EuEpp ();
3334 break ;
@@ -40,6 +41,12 @@ public static function create($registry)
4041 case 'GR ' :
4142 return new GrEpp ();
4243 break ;
44+ case 'HK ' :
45+ return new HkEpp ();
46+ break ;
47+ case 'HR ' :
48+ return new HrEpp ();
49+ break ;
4350 case 'LV ' :
4451 return new LvEpp ();
4552 break ;
@@ -58,9 +65,6 @@ public static function create($registry)
5865 case 'UA ' :
5966 return new UaEpp ();
6067 break ;
61- case 'HK ' :
62- return new HkEpp ();
63- break ;
6468 case 'VRSN ' :
6569 return new VrsnEpp ();
6670 break ;
You can’t perform that action at this time.
0 commit comments