Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jongotlin/peppol

Create PEPPOL BIS 3.0 documents
https://github.com/jongotlin/peppol

invoice php

Last synced: 2 months ago
JSON representation

Create PEPPOL BIS 3.0 documents

Awesome Lists containing this project

README

        

# Peppol
Create PEPPOL BIS 3.0 documents

### Installation
```
composer require jongotlin/peppol
```

### Example
```php
$peppolGenerator = new PeppolGenerator();
$invoice = new Invoice();
$invoice->setCurrency('SEK');

$peppolDocument = $peppolGenerator->createInvoiceDocument($invoice);
echo $peppolDocument->saveXML();
```