forked from AbcAeffchen/Sephpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.19 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
{
"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"],
"homepage": "https://github.com/AbcAeffchen/Sephpa",
"license": "LGPL-3.0",
"authors": [
{
"name": "Alexander Schickedanz (AbcAeffchen)",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/AbcAeffchen/Sephpa/issues"
},
"require": {
"php": ">=5.6.0",
"ext-xml": "*",
"abcaeffchen/sepa-utilities": "~1.2.5"
},
"require-dev": {
"phpunit/phpunit": "5.7.* || 6.3.*",
"abcaeffchen/sepa-documentor": "~1.0.0"
},
"suggest": {
"ext-zlib": "Needed to store or download multiple files at once."
},
"autoload": {
"psr-4": {
"AbcAeffchen\\Sephpa\\": "src/",
"AbcAeffchen\\Sephpa\\PaymentCollections\\": "src/payment-collections/"
}
}
}