fix: use IntlDateFormatter instead of strftime

This CL introduces breaking changes, since it uses non-constant static
variable initializers, which are only available since PHP 8.3. Thus, the
codebase now only supports PHP 8.3 (and the docs have been modified to
reflect this and the fact that the Intl extension is necessary).

Fixed: hores:2
GitOrigin-RevId: 9a91312c96b90fa4c9ae5fc5f6e972fd95c9cd57
diff --git a/src/doexport.php b/src/doexport.php
index 5d29327..6326fc9 100644
--- a/src/doexport.php
+++ b/src/doexport.php
@@ -83,7 +83,7 @@
 
       $this->SetFont('Arial','I',10);
       $this->SetY(-20);
-      $this->Cell(0, 10, export::convert("Generado: ".strftime("%d %b %Y %T", $actualTime)), 0, 0, 'L');
+      $this->Cell(0, 10, export::convert("Generado: ".date::getShortDateWithTime($actualTime)), 0, 0, 'L');
       $this->SetY(-20);
       $this->Cell(0, 10, $this->PageNo().'/{nb}', 0, 0, 'R');
     }