Skip to content

Commit 2a2a624

Browse files
committed
Updates; added two more backends
1 parent feffd8a commit 2a2a624

File tree

4 files changed

+2734
-6
lines changed

4 files changed

+2734
-6
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ openssl s_client -connect epp.example.com:700 -CAfile cacert.pem -cert cert.pem
9494
| TMCH ||
9595
| REGRR ||
9696

97-
## Registry Support (34 backends and counting)
97+
## Registry Support (36 backends and counting)
9898

9999
| Registry | TLDs | Extension | Status | TODO |
100100
|----------|----------|----------|----------|----------|
@@ -119,18 +119,20 @@ openssl s_client -connect epp.example.com:700 -CAfile cacert.pem -cert cert.pem
119119
| IIS | .se, .nu | SE || |
120120
| HKIRC | .hk | HK || |
121121
| NASK | .pl | PL || |
122+
| Namingo | all | || |
122123
| NIC Chile | .cl | || |
124+
| NIC Mexico | .mx | MX || |
123125
| NIC.LV | .lv | LV || |
124126
| NORID | .no | NO || |
125127
| .PT | .pt | PT || |
126128
| Registr.io | all | || |
127129
| Registro.it | .it | IT | 🚧 | work on extensions |
128-
| RoTLD | .ro | || more tests |
129-
| RyCE | all | || more tests |
130+
| RoTLD | .ro | || |
131+
| RyCE | all | || |
130132
| SIDN | all | || more tests |
131133
| SWITCH | .ch, .li | || |
132134
| Verisign | all | VRSN || |
133-
| ZADNA | .za | || more tests |
135+
| ZADNA | .za | || |
134136
| ZDNS | all | || |
135137

136138
## Integration with billing systems

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.1",
13+
"php": "^8.2",
1414
"ext-xml": "*",
15-
"monolog/monolog": "^3.5"
15+
"monolog/monolog": "^3.6"
1616
},
1717
"autoload": {
1818
"psr-4": {

src/EppRegistryFactory.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
use Pinga\Tembo\Registries\HkEpp;
1818
use Pinga\Tembo\Registries\HrEpp;
1919
use Pinga\Tembo\Registries\LvEpp;
20+
use Pinga\Tembo\Registries\MxEpp;
2021
use Pinga\Tembo\Registries\NoEpp;
2122
use Pinga\Tembo\Registries\PlEpp;
2223
use Pinga\Tembo\Registries\PtEpp;
@@ -50,6 +51,9 @@ public static function create($registry)
5051
case 'LV':
5152
return new LvEpp();
5253
break;
54+
case 'MX':
55+
return new MxEpp();
56+
break;
5357
case 'NO':
5458
return new NoEpp();
5559
break;

0 commit comments

Comments
 (0)