forked from CleverIT/UBL_invoice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (40 loc) · 1.07 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
{
"name": "luigi-belli/ubl_invoice",
"description": "A PHP wrapper for UBL invoices",
"keywords": [
"ubl", "invoice", "ublinvoice", "cleverit", "clever invoice", "electronic invoice", "xml", "xml invoice"
],
"homepage": "https://github.com/CleverIT/UBL_invoice",
"license": "MIT",
"authors": [
{
"name": "Luigi Belli | Cu.be Solutions",
"email": "[email protected]",
"homepage": "http://www.cu.be",
"role": "Developer"
},
{
"name": "Bram van Eijk | CleverIT",
"email": "[email protected]",
"homepage": "http://www.cleverit.nl",
"role": "Developer"
}
],
"require": {
"sabre/xml": "^1.5"
},
"autoload": {
"psr-4": {
"CleverIt\\UBL\\Invoice\\": ["src/"]
}
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"greenter/ubl-validator": "^2.0"
},
"autoload-dev": {
"psr-4": {
"CleverIt\\UBL\\Invoice\\Tests\\": "tests/"
}
}
}