-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
43 lines (43 loc) · 929 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
{
"name": "zipmoney/merchantapi-php",
"version": "1.0.12",
"description": "",
"keywords": [
"zipmoney",
"zippay",
"zipcredit",
"merchantapi",
"php",
"sdk",
"api"
],
"homepage": "http://zipmoney.com.au",
"license": "MIT",
"authors": [{
"name": "zipMoney Payments Pty Ltd.",
"homepage": "https://github.com/zipMoney/merchantapi-php"
}],
"scripts": {
"publish": "sh ./build/shell/publish.sh"
},
"require": {
"php": ">=5.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.6",
"phpunit/phpunit": "^5.0"
},
"autoload": {
"psr-4": {
"zipMoney\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"zipMoney\\": "test/"
}
}
}