forked from delassiter/bav
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 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
37
38
39
40
41
{
"name": "cashlink/bav",
"type": "library",
"description": "BAV provides validation for German Bank Accounts (Konto)",
"keywords": ["bank", "account", "bankaccount", "validation", "check", "konto"],
"homepage": "http://bav.malkusch.de/",
"license": "WTFPL",
"authors": [
{
"name": "Markus Malkusch",
"email": "markus@malkusch.de",
"homepage": "http://markus.malkusch.de",
"role": "Developer"
}
],
"autoload": {
"files": ["autoloader/autoloader.php"]
},
"require": {
"php": ">=7.0.0",
"cashlink/php-index": "~1.0.0"
},
"suggest": {
"ext-PDO": "Allows storing bank information in a database",
"ext-mbstring": "Enables UTF-8 support",
"ext-dom": "Enables picking the download URI by xpath",
"lib-curl": "Enables API for downloading the bank file",
"doctrine/orm": "Support for Doctrine ORM data backend"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"doctrine/orm": "^2"
},
"archive": {
"exclude": ["/tests"]
},
"bin": [
"bin/bav-update.php",
"bin/bav-install.php"
]
}