forked from ebics-api/ebics-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.37 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "andrew-svirin/ebics-client-php",
"type": "library",
"description": "PHP library to communicate with bank through EBICS protocol.",
"keywords": [
"ebics",
"PHP",
"client",
"openssl",
"rsa",
"x509",
"cfonb.120",
"cfonb.240",
"mt940",
"mt942"
],
"authors": [
{
"name": "Andrew Svirin"
}
],
"license": "MIT",
"require": {
"php": "^7.2 || ^8",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-openssl": "*",
"ext-zip": "*",
"ext-zlib": "*",
"ext-json": "*"
},
"require-dev": {
"mpdf/mpdf": "^8.0",
"phpstan/phpstan": "^0.12.29",
"phpunit/phpunit": "^8.5",
"andrew-svirin/cfonb-php": "dev-master",
"andrew-svirin/mt942-php": "dev-master",
"phpseclib/phpseclib": "~2.0",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"AndrewSvirin\\Ebics\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AndrewSvirin\\Ebics\\Tests\\": "tests"
}
},
"suggest": {
"andrew-svirin/cfonb-php": "If you need to parse format CFONB from FDL requests.",
"andrew-svirin/mt942-php": "If you need to parse format MT942 from VMK, STA requests.",
"mpdf/mpdf": "If you need to generate PDF file letter for Bank."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}