Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jongotlin/peppol
- Owner: jongotlin
- License: mit
- Created: 2020-09-28T10:00:05.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-07T07:15:01.000Z (over 2 years ago)
- Last Synced: 2024-10-11T13:13:03.471Z (3 months ago)
- Topics: invoice, php
- Language: PHP
- Homepage:
- Size: 45.9 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- 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();
```