-
Notifications
You must be signed in to change notification settings - Fork 68
/
composer.json
38 lines (38 loc) · 930 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
{
"name": "genkgo/camt",
"description": "Library to read CAMT files (XML containing bank statements).",
"license": "MIT",
"scripts": {
"check": [
"php-cs-fixer fix --ansi --dry-run --diff",
"phpunit --color=always",
"phpstan analyse --ansi"
],
"fix": [
"php-cs-fixer fix --ansi"
]
},
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"moneyphp/money": "^4.6",
"jschaedl/iban-validation": "^2.5"
},
"autoload": {
"psr-4": {
"Genkgo\\Camt\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Genkgo\\TestCamt\\": "test"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "@stable"
}
}