-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
38 lines (38 loc) · 1015 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
38
{
"name": "joglomedia/ibanking",
"type": "library",
"description": "Internet Banking PHP 5.6+ library",
"keywords": ["ibank", "ibanking", "internet banking", "bca", "bni", "mandiri", "cek mutasi", "payment gateway"],
"homepage": "https://github.com/joglomedia/ibanking",
"license": "GPL-2",
"authors": [
{
"name": "Edi Septriyanto",
"email": "[email protected]",
"homepage": "http://masedi.net",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/joglomedia/ibanking/issues",
"source": "https://github.com/joglomedia/ibanking"
},
"minimum-stability": "dev",
"require": {
"php": ">=5.6.0",
"ext-curl" : "*"
},
"require-dev": {
"phpunit/phpunit": "4.5.*"
},
"suggest": {
},
"autoload": {
"psr-4": { "IBanking\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
}
}
}