https://github.com/jongotlin/peppol
Create PEPPOL BIS 3.0 documents
https://github.com/jongotlin/peppol
invoice php
Last synced: 4 months ago
JSON representation
Create PEPPOL BIS 3.0 documents
- Host: GitHub
- URL: https://github.com/jongotlin/peppol
- Owner: jongotlin
- License: mit
- Created: 2020-09-28T10:00:05.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-08-07T07:15:01.000Z (almost 3 years ago)
- Last Synced: 2025-03-13T10:40:33.203Z (4 months ago)
- Topics: invoice, php
- Language: PHP
- Homepage:
- Size: 45.9 KB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```