-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.74 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.74 KB
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
61
62
{
"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"
},
{
"name": "Jan Nöhles",
"email": "jan.noehles@easybill.de"
}
],
"require": {
"php": "^8.3",
"jms/serializer": "^3.30",
"ext-dom": "*"
},
"suggest": {
"ext-libxml": "Needed for XSD validation"
},
"require-dev": {
"ext-libxml": "*",
"friendsofphp/php-cs-fixer": "^v3.75",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.2",
"rector/rector": "^2.3",
"symfony/finder": "^5.4 || ^7.0"
},
"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
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:php83": "docker run --rm -v $(pwd):/app -w /app php:8.3 vendor/bin/phpunit",
"test:php84": "docker run --rm -v $(pwd):/app -w /app php:8.4 vendor/bin/phpunit",
"test:php85": "docker run --rm -v $(pwd):/app -w /app php:8.5 vendor/bin/phpunit",
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --config .php-cs-fixer.dist.php",
"phpstan": "vendor/bin/phpstan analyse --memory-limit 1G",
"rector": "vendor/bin/rector process",
"rector:dry-run": "vendor/bin/rector process --dry-run"
}
}