forked from z38/swiss-payment
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
31 lines (31 loc) · 865 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
{
"name": "ch2877/swiss-payment",
"type": "library",
"license": "MIT",
"description": "PHP library to generate Swiss pain.001 messages (complies with ISO-20022)",
"keywords": ["banking", "iso-20022", "six", "credit-transfer", "switzerland", "sepa", "xml"],
"homepage": "https://github.com/ch2877/swiss-payment",
"authors": [
{
"name": "Multiple contributors",
"homepage": "https://github.com/ch2877/swiss-payment/graphs/contributors",
"role": "Developer"
}
],
"require": {
"php": ">=7.2|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-0": {
"Z38\\SwissPayment": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Z38\\SwissPayment\\Tests": "tests/"
}
}
}