-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcomposer.json
52 lines (52 loc) · 1.16 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
{
"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": "[email protected]"
},
{
"name": "Jan Nöhles",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"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",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1.0",
"symfony/finder": "^5.4",
"phpstan/phpstan-strict-rules": "^1.5"
},
"autoload": {
"psr-4": {
"Easybill\\ZUGFeRD\\": "src/zugferd10",
"Easybill\\ZUGFeRD2\\": "src/zugferd2"
}
},
"autoload-dev": {
"psr-4": {
"Easybill\\ZUGFeRD\\": "tests/zugferd10",
"Easybill\\ZUGFeRD2\\": "tests/zugferd2"
}
},
"config": {
"platform-check": false
}
}