-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
44 lines (44 loc) · 1.27 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
{
"name": "jttech/sie",
"description": "Library for export to the Swedish SIE-format. Currently only a subset of the specification is supported, like export to SIE4 (verification/transaction data).",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Johan Wilfer",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"ext-iconv": "*"
},
"autoload": {
"psr-4": {
"SIE\\": "src/SIE/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"symplify/easy-coding-standard": "^12.3",
"rector/rector": "^1.2",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^11.2",
"phpstan/phpstan-strict-rules": "^1.6",
"spaze/phpstan-disallowed-calls": "^3.4",
"phpstan/phpstan-phpunit": "^1.4"
},
"scripts": {
"cs-check": "vendor/bin/ecs check --ansi",
"cs-fix": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse",
"rector-check": "vendor/bin/rector --dry-run",
"rector-fix": "vendor/bin/rector",
"phpunit": "vendor/bin/phpunit"
}
}