-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
60 lines (60 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "easybill/e-invoicing",
"description": "A package to read and create EN16931 e-invoices or CIUS like: XRechnung, ZUGFeRD etc.",
"type": "library",
"license": "MIT",
"keywords": [
"XRechnung",
"PEPPOL",
"factur-x",
"ZUGFeRD",
"EN16931",
"e-invoicing",
"einvoice",
"invoicing",
"UBL",
"CII",
"XML"
],
"autoload": {
"psr-4": {
"easybill\\eInvoicing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"easybill\\eInvoicingTests\\": "tests/"
}
},
"authors": [
{
"name": "Jan Nöhles",
"email": "jan.noehles@easybill.de"
},
{
"name": "Patrick Romowicz",
"email": "patrick.romowicz@easybill.de"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"ext-dom": "*",
"jms/serializer": "^3.30",
"ext-libxml": "*"
},
"require-dev": {
"pestphp/pest": "^2.35",
"phpstan/phpstan": "^1.12",
"friendsofphp/php-cs-fixer": "^3.64",
"guzzlehttp/guzzle": "^7.9",
"phpstan/phpstan-strict-rules": "^1.6",
"symfony/finder": "^7.1"
},
"config": {
"platform-check": false,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}