This repository has been archived by the owner on May 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.55 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
{
"name": "lowsprofile/midtrans",
"description": "PHP Wrapper for Midtrans API.",
"homepage": "https://midtrans.com",
"version": "1.1.0",
"type": "library",
"license":"MIT",
"keywords": [
"payment", "midtrans", "veritrans"
],
"support": {
"issues": "https://github.com/lowsprofile/midtrans-php/issues",
"source": "https://github.com/lowsprofile/midtrans-php"
},
"authors": [
{
"name": "Eries Trisnadi",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"codeception/aspect-mock": "^1.0 | ~2.0.1",
"doctrine/annotations": "~1.2.0",
"goaop/framework": "^1.0.0-alpha.2 | ~2.0.0",
"jakub-onderka/php-parallel-lint": "^0.9.0",
"mockery/mockery": "~0.9",
"phpunit/phpunit": "^5.0",
"php-mock/php-mock-phpunit": "^0.3 | ^1.1",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"Lowsprofile\\Midtrans\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lowsprofile\\Midtrans\\Test\\": "tests/"
}
},
"scripts": {
"lint": "parallel-lint src tests",
"phpunit": "phpunit --verbose --colors=always",
"phpcs": "phpcs src tests --standard=psr2 -sp --colors",
"phpcbf": "phpcbf src tests --no-patch --standard=psr2",
"test": [
"@lint",
"@phpunit",
"@phpcs"
]
}
}