-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
50 lines (50 loc) · 1.25 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
{
"name": "abcaeffchen/sephpa",
"type": "library",
"description": "Generates SEPA files for credit transfers (pain.001.001.03, pain.001.002.03, pain.001.003.03) and direct debit (pain.008.001.02, pain.008.002.02, pain.008.003.02)",
"keywords": [
"sepa",
"xml",
"banking",
"files",
"finance",
"credit transfer",
"direct debit",
"php7",
"php8"
],
"homepage": "https://github.com/AbcAeffchen/Sephpa",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Alexander Schickedanz (AbcAeffchen)",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/AbcAeffchen/Sephpa/issues"
},
"require": {
"php": ">=7.1",
"ext-xml": "*",
"ext-simplexml": "*",
"abcaeffchen/sepa-utilities": "^1.3.4"
},
"require-dev": {
"ext-dom": "*",
"ext-zip": "*",
"phpunit/phpunit": "^9 || ^8 || ^7",
"abcaeffchen/sepa-documentor": "^2.0"
},
"suggest": {
"ext-zip": "Needed to store or download multiple files at once.",
"abcaeffchen/sepa-documentor": "^2.0"
},
"autoload": {
"psr-4": {
"AbcAeffchen\\Sephpa\\": "src/",
"AbcAeffchen\\Sephpa\\PaymentCollections\\": "src/payment-collections/"
}
}
}