A modern object-oriented PHP library to create valid UBL files. Please feel free to contribute if you are missing features or tags.
This package requires PHP 8.3 or higher. Installation can be done through composer.
The package has to be added manually into the composer.json
file
"require": {
...
"minicstudio/anaf-ubl": "^2.0"
}
Then we also need to specify where package can be found as it is not listed as a composer package, so add the following into the composer.json
file.
"repositories": {
"anaf-ubl": {
"type": "vcs",
"url": "[email protected]:minicstudio/anaf-ubl.git"
}
}
This repository does not have a documentation website at this moment. For now, please check out some code examples by checking the unit tests in the tests
folder.