-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.17 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
{
"name": "tiime/cross-industry-invoice",
"type": "library",
"require": {
"php": ">=8.3",
"ext-dom": "*",
"ext-libxml": "*",
"tiime/en-16931": "^0.10.0",
"twig/intl-extra": "^3.15",
"twig/twig": "^3.15"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Tiime\\CrossIndustryInvoice\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tiime\\CrossIndustryInvoice\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Lucas-Gerard",
"email": "[email protected]"
},
{
"name": "Aurélien PILLEVESSE",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit tests --display-warnings",
"fix-cs": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan analyse -l 9 src tests"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}