-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.26 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
{
"name": "tiime/factur-x",
"description": "PHP library to manage your Factur-X (PDF invoices files)",
"type": "library",
"require": {
"php": ">=8.3",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-zlib": "*",
"tiime/en-16931": "^0.10.0",
"setasign/fpdf": "^1.8",
"setasign/fpdi": "^2.6",
"ramsey/uuid": "^4.7",
"smalot/pdfparser": "^2.11"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.9",
"friendsofphp/php-cs-fixer": "^3.64"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Tiime\\FacturX\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tiime\\FacturX\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Flavien RODRIGUES",
"email": "rodrigues.flavien@gmail.com"
},
{
"name": "Aurélien PILLEVESSE",
"email": "aurelienpillevesse@hotmail.fr"
}
],
"scripts": {
"test": "vendor/bin/phpunit tests",
"fix-cs": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan analyse -l 9 src tests"
}
}