-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 999 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
32
33
34
35
36
37
{
"name": "consilience/iso20022-pain",
"type": "library",
"license": "MIT",
"description": "PHP library to generate UK pain.001 messages (complies with ISO-20022)",
"keywords": ["banking", "iso-20022", "six", "credit-transfer", "uk", "united kingdom", "sepa", "xml", "fps"],
"homepage": "https://github.com/academe/iso20022-pain",
"authors": [
{
"name": "z38",
"homepage": "https://github.com/z38",
"role": "Developer"
},
{
"name": "Jason Judge",
"homepage": "https://github.com/academe",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.0",
"moneyphp/money": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "~4.2"
},
"autoload": {
"psr-4": {
"Consilience\\Pain001\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Consilience\\Pain001\\": "tests/"
}
}
}