-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] Added ZugferdSpecificationVersions to get the latest used speci…
…fication versions
- Loading branch information
HorstOeko
committed
Dec 6, 2024
1 parent
8638e75
commit e5e0498
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
|
||
/** | ||
* This file is a part of horstoeko/zugferd. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace horstoeko\zugferd; | ||
|
||
/** | ||
* Class representing the information source of the used specification versions | ||
* | ||
* @category Zugferd | ||
* @package Zugferd | ||
* @author D. Erling <horstoeko@erling.com.de> | ||
* @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"; | ||
} |