-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
94 lines (94 loc) · 2.87 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "hiqdev/php-merchant",
"type": "library",
"description": "Generalization over Omnipay and Payum",
"keywords": [
"php",
"payment",
"gateway",
"merchant",
"omnipay",
"payum"
],
"homepage": "https://github.com/hiqdev/php-merchant",
"license": "BSD-3-Clause",
"support": {
"email": "support@hiqdev.com",
"source": "https://github.com/hiqdev/php-merchant",
"issues": "https://github.com/hiqdev/php-merchant/issues",
"wiki": "https://github.com/hiqdev/php-merchant/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": {
"php": "^7.1 | ^8.0",
"ext-json": "*",
"moneyphp/money": "^3.0 | ^4.0"
},
"require-dev": {
"hiqdev/omnipay-paypal": "^3.0",
"hiqdev/omnipay-paxum": "^3.0",
"hiqdev/omnipay-freekassa": "^3.0",
"hiqdev/omnipay-interkassa": "^3.0",
"hiqdev/omnipay-robokassa": "^3.0",
"hiqdev/omnipay-okpay": "^3.0",
"hiqdev/omnipay-epayservice": "^3.0",
"hiqdev/omnipay-bitpay": "^3.1.0",
"hiqdev/omnipay-yandexmoney": "^3.0",
"hiqdev/omnipay-epayments": "^3.0",
"hiqdev/omnipay-ikajo": "^3.0",
"hiqdev/omnipay-cryptomus": "dev-main",
"dercoder/omnipay-webmoney": "^5.0",
"hiqdev/hidev-php": "dev-master",
"hiqdev/hidev-hiqdev": "dev-master",
"phpunit/phpunit": "^9.0",
"dms/phpunit-arraysubset-asserts": "dev-master",
"bitpay/sdk-light": "dev-master as 2.2.3",
"php-http/mock-client": "^1.0",
"php-http/guzzle7-adapter": "1.x-dev"
},
"minimum-stability": "dev",
"repositories": [
{
"type": "git",
"url": "https://github.com/SilverFire/php-bitpay-light-client"
}
],
"autoload": {
"psr-4": {
"hiqdev\\php\\merchant\\": "src",
"hiqdev\\php\\merchant\\tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"yiisoft/composer-config-plugin": true,
"php-http/discovery": true
}
}
}