forked from hiqdev/omnipay-bitpay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.86 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
63
64
65
66
67
68
69
70
{
"name": "hiqdev/omnipay-bitpay",
"type": "library",
"description": "BitPay driver for Omnipay PHP payment libray",
"keywords": [
"omnipay",
"bitpay",
"php",
"merchant",
"payment"
],
"homepage": "https://github.com/hiqdev/omnipay-bitpay",
"license": "MIT",
"support": {
"email": "support@hiqdev.com",
"source": "https://github.com/hiqdev/omnipay-bitpay",
"issues": "https://github.com/hiqdev/omnipay-bitpay/issues",
"wiki": "https://github.com/hiqdev/omnipay-bitpay/wiki",
"forum": "http://forum.hiqdev.com/"
},
"authors": [
{
"name": "Andrii Vasyliev",
"role": "Project lead",
"email": "sol@hiqdev.com",
"homepage": "http://hipanel.com/"
},
{
"name": "Dmitry Naumenko",
"role": "Lead backend developer",
"email": "d.naumenko.a@gmail.com",
"homepage": "http://silverfire.me/"
},
{
"name": "Andrey Klochok",
"role": "Lead frontend developer",
"email": "andreyklochok@gmail.com",
"homepage": "http://hiqdev.com/"
},
{
"name": "Yuriy Myronchuk",
"role": "QA Lead",
"email": "bladeroot@gmail.com",
"homepage": "http://hiqdev.com/"
}
],
"require": {
"omnipay/common": "^3.0",
"bitpay/sdk-light": "^2.2"
},
"require-dev": {
"omnipay/tests": "^4.0"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Omnipay\\BitPay\\": "src",
"Omnipay\\BitPay\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}