-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 776 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 776 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
31
32
33
34
35
36
37
{
"name" : "jschaedl/iban",
"type" : "library",
"description" : "validate and generate IBANs",
"keywords" : [
"iban",
"validation",
"generate"
],
"homepage" : "http://github.com/jschaedl/Iban",
"license" : "MIT",
"authors" : [{
"name" : "Jan Schädlich",
"email" : "mail@janschaedlich.com",
"homepage" : "https://github.com/jschaedl/"
}
],
"require-dev" : {
"phpunit/phpunit" : "3.7.*",
"phpunit/php-code-coverage" : ">=1.2.10,<1.3.0",
"phploc/phploc" : "*",
"sebastian/phpcpd" : "*"
},
"require" : {
},
"suggest": {
"ext-bcmath" : "Because this library make use of bcmod function, an installed bcmath extension is required."
},
"autoload" : {
"psr-0" : {
"IBAN" : [
"library",
"tests/library"
]
}
}
}