ahmeti/ubl-parser

UBL (Universal Business Language) Parser for PHP

Maintainers

Package info

github.com/ahmeti/ubl-parser-php

pkg:composer/ahmeti/ubl-parser

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 6

Open Issues: 0

1.1 2026-03-25 01:23 UTC

This package is auto-updated.

Last update: 2026-03-25 01:24:55 UTC


README

Installation

You can install the package via composer:

composer require ahmeti/ubl-parser

Usage

require __DIR__.'/vendor/autoload.php';

$xmlString = file_get_contents('Path of Invoice UBL (XML) File');

$result = (new UblParser)->set($xmlString)->get();

print_r($result);

Sample

ubl parser php