-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 1.28 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "youniwemi/digital-invoice",
"type": "library",
"description": "Digital Invoice is an easy wrapper around easybill/zugferd-php, josemmo/einvoicing and atgp/factur-x that will allow you generate Factur-x and UBL (Peppol, Cius...) invoices in a very easy way.",
"keywords": ["Factur-x" , "UBL" , "Peppol", "Cius", "Digital Invoice" , "Invoice" , "E-Invoicing", "ZUGFeRD" ],
"license": "MIT",
"authors": [
{
"name": "Rahal Aboulfeth",
"email": "[email protected]"
}
],
"require": {
"easybill/zugferd-php": "dev-master",
"atgp/factur-x": "^1.0",
"milo/schematron": "dev-master",
"josemmo/einvoicing": "^0.2.7"
},
"require-dev": {
"phpunit/phpunit": "^8 || ^9"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/Youniwemi/zugferd-php"
},
{
"type": "git",
"url": "https://github.com/Youniwemi/schematron"
}
],
"scripts": {
"test": "vendor/bin/phpunit test"
},
"autoload": {
"psr-4": {
"DigitalInvoice\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigitalInvoice\\Test\\": "tests/"
}
}
}