-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 746 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 746 Bytes
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
{
"name": "nemiah/php-sepa-xml",
"description": "Simple classes for creating SEPA transfer and direct debit xml files. No dependencies",
"license": "LGPL-3.0",
"type": "library",
"version": "1.2",
"keywords": ["sepa","xml"],
"homepage": "https://github.com/nemiah/phpSepaXml",
"authors": [
{
"name": "Nena Furtmeier",
"email": "support@furtmeier.it",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"nemiah\\phpSepaXml\\": ["src/nemiah/phpSepaXml/"]
}
},
"require": {
"php": ">=5.6.0",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-libxml": "*"
},
"require-dev": {
"phpunit/phpunit": "5.6.*"
}
}