-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
40 lines (40 loc) · 940 Bytes
/
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
{
"name": "josemmo/einvoicing",
"description": "Library for reading and creating European-compliant electronic invoices (EN 16931)",
"keywords": [
"invoicing",
"invoice",
"peppol",
"ubl",
"cii"
],
"license": "MIT",
"homepage": "https://github.com/josemmo/einvoicing",
"authors": [
{
"name": "José Miguel Moreno",
"email": "[email protected]",
"homepage": "https://github.com/josemmo"
}
],
"autoload": {
"psr-4": {
"Einvoicing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"josemmo/uxml": "^0.1.4"
},
"require-dev": {
"ext-openssl": "*",
"phan/phan": "*",
"phpdocumentor/reflection": "^3.0|^5.1",
"symfony/phpunit-bridge": "*"
}
}