-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
43 lines (43 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
{
"name": "atgp/factur-x",
"description": "PHP library to manage your Factur-X / ZUGFeRD 2.0 PDF invoices files",
"keywords": [
"php",
"invoice",
"factur-x",
"zugferd",
"pdf",
"xml"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "@GP",
"homepage": "https://www.atgp.net/"
}
],
"autoload": {
"psr-4": {
"Atgp\\FacturX\\": "src/"
}
},
"require": {
"php": ">=7.4",
"setasign/fpdf": "^1.8",
"setasign/fpdi": "^2.0",
"smalot/pdfparser": "^0.19.0|~1.0|~2.0",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-zlib": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.1",
"phpstan/phpstan": "^2.0"
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse"
}
}