forked from silarhi/cfonb-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 833 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 833 Bytes
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
{
"name": "ebics-api/cfonb-php",
"description": "A PHP Parser for CFONB 120 signatures, 240 transfers. Helper for EBICS.",
"license": "MIT",
"type": "library",
"keywords": ["cfonb", "parser", "etebac", "swift", "ebics"],
"authors": [
{
"name": "Guillaume Sainthillier",
"email": "hello@silarhi.fr"
},
{
"name": "Andrew Svirin"
}
],
"require": {
"php": "^7.4 || ^8"
},
"require-dev": {
"phpunit/phpunit": "^8.5 | ^9.1",
"phpstan/phpstan": "^0.12.57",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"Silarhi\\Cfonb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Silarhi\\Cfonb\\Tests\\": "tests/"
}
}
}