-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
39 lines (39 loc) · 896 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
{
"name": "nemiah/php-fints",
"description": "PHP Library for the protocols fints and hbci",
"homepage": "https://github.com/nemiah/phpFinTS",
"version": "3.5.0",
"license": "MIT",
"autoload": {
"psr-0": {
"Fhp": "lib/",
"Tests\\Fhp": "lib/"
}
},
"require": {
"php": ">=8.0",
"psr/log": "^1|^2|^3",
"ext-curl": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "9.5.*",
"php-mock/php-mock-phpunit": "2.6.*",
"friendsofphp/php-cs-fixer": "3.*"
},
"suggest": {
"monolog/monolog": "Allow sending log messages to a variety of different handlers",
"abcaeffchen/sephpa": "1.*",
"nemiah/php-sepa-xml": "dev-master"
},
"scripts": {
"test": [
"phpunit"
],
"check": [
"@cs"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff"
}
}