-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
62 lines (62 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "otnansirk/php-snap-bi",
"description": "This is a standard national open API Payments wrapper for PHP",
"keywords": [
"snap-bi",
"php-snap-bi",
"sdk-snap-bca",
"sdk-snap-mandiri",
"sdk-snap-dana",
"sdk-snap-bri",
"php-snap-bca",
"php-snap-mandiri",
"php-snap-dana",
"php-snap-bri",
"php"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Otnansirk",
"email": "[email protected]"
}
],
"support": {
"forum": "https://github.com/otnansirk/php-snap-bi/discussions",
"issues": "https://github.com/otnansirk/php-snap-bi/issues",
"source": "https://github.com/otnansirk/php-snap-bi",
"docs": "https://php-snap-bi.gitbook.io/docs"
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit"
},
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ramsey/uuid": "^4.7",
"nesbot/carbon": "^2.71"
},
"require-dev": {
"psy/psysh": "^0.11.20",
"phpunit/phpunit": "^10.3"
},
"autoload": {
"psr-4": {
"Otnansirk\\SnapBI\\": "src/"
},
"files": [
"src/helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Otnansirk\\SnapBI\\": [
"tests/",
"tests/Integration",
"tests/Unit",
"tests/Fixtures"
]
}
}
}