forked from easybill/zugferd-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 982 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
41
42
43
44
{
"name": "easybill/zugferd-php",
"description": "ZUGFeRD PHP SDK (Factur-X, XRechnung) - Convert PHP Objects to XML and back.",
"keywords": [
"ZUGFeRD", "Factur-X", "XRechnung"
],
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Patrick Romowicz",
"email": "patrick@romowicz.de"
}
],
"require": {
"php": "^7.4 || ^8.0",
"jms/serializer": "^3.16",
"ext-dom": "*"
},
"suggest": {
"ext-libxml": "Needed for XSD validation"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"ext-libxml": "*",
"friendsofphp/php-cs-fixer": "^3.16"
},
"autoload": {
"psr-4": {
"Easybill\\ZUGFeRD\\": "src/zugferd10",
"Easybill\\ZUGFeRD211\\": "src/zugferd211"
}
},
"autoload-dev": {
"psr-4": {
"Easybill\\ZUGFeRD\\": "tests/zugferd10",
"Easybill\\ZUGFeRD211\\": "tests/zugferd211"
}
},
"config": {
"platform-check": false
}
}