forked from z38/swiss-payment
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
31 lines (31 loc) · 803 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": "z38/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/z38/swiss-payment",
"authors": [
{
"name": "z38",
"homepage": "https://github.com/z38",
"role": "Developer"
}
],
"require": {
"php": "^5.6 || ^7"
},
"require-dev": {
"phpunit/phpunit": "^5 || ^8"
},
"autoload": {
"psr-0": {
"Z38\\SwissPayment": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Z38\\SwissPayment\\Tests": "tests/"
}
}
}