From e5e0498b55cf19fac0b5c82620928daa38d0cb14 Mon Sep 17 00:00:00 2001 From: HorstOeko Date: Fri, 6 Dec 2024 14:16:47 +0100 Subject: [PATCH] [ENH] Added ZugferdSpecificationVersions to get the latest used specification versions --- src/ZugferdSpecificationVersions.php | 37 ++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/ZugferdSpecificationVersions.php diff --git a/src/ZugferdSpecificationVersions.php b/src/ZugferdSpecificationVersions.php new file mode 100644 index 00000000..4a101d73 --- /dev/null +++ b/src/ZugferdSpecificationVersions.php @@ -0,0 +1,37 @@ + + * @license https://opensource.org/licenses/MIT MIT + * @link https://github.com/horstoeko/zugferd + */ +class ZugferdSpecificationVersions +{ + /** + * The latest ZUGFeRD version used + */ + const VERSION_ZUGFERD = "2.3.2"; + + /** + * The latest Factur-X version used + */ + const VERSION_FACTURX = "1.07.2"; + + /** + * The latest XRechnung version used + */ + const VERSION_XRECHNUNG = "3.0.2"; +}