forked from odenktools/php-bca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 992 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
39
40
41
42
43
44
45
{
"name": "odenktools/php-bca",
"type": "library",
"description": "Library REST API Untuk Develop BCA Payment",
"keywords": [
"http",
"rest",
"php",
"BCA",
"BCA PHP",
"banking",
"HTTP client"
],
"homepage": "https://github.com/odenktools/php-bca",
"license": "MIT",
"authors": [{
"name": "odenktools",
"email": "odenktools86@gmail.com",
"homepage": "https://odenktools.com",
"role": "Developer"
}],
"require": {
"php": ">=5.4",
"ext-curl": "*",
"mashape/unirest-php": "3.0.4",
"nesbot/carbon": "~1.18 || ^2.41"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0"
},
"autoload": {
"psr-0": {
"Bca\\": "lib/"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"test": "phpunit --colors=always",
"test:ci": "composer test -- --verbose --coverage-text --coverage-clover=coverage.xml"
}
}