forked from easybill/zugferd-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1 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
{
"name": "silarhi/zugferd-factur-x",
"description": "XML generator for ZUGFeRD / Factur-X / XRechnung written in PHP. Convert PHP Objects to XML and back.",
"keywords": [
"ZUGFeRD", "Factur-X", "XRechnung"
],
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Patrick Romowicz",
"email": "[email protected]"
},
{
"name": "SILARHI",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"jms/serializer": "^3.18",
"ext-dom": "*"
},
"suggest": {
"ext-libxml": "Needed for XSD validation"
},
"require-dev": {
"phpunit/phpunit": "^9.6.15",
"ext-libxml": "*",
"friendsofphp/php-cs-fixer": "^3.16",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"Easybill\\ZUGFeRD\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Easybill\\ZUGFeRD\\Tests\\": "tests/"
}
},
"config": {
"platform-check": false
}
}