-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
63 lines (63 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
{
"name": "hiqdev/omnipay-yandexmoney",
"type": "library",
"description": "Yandex.Money driver for Omnipay PHP payment library",
"keywords": [
"php",
"omnipay",
"yandex.money",
"merchant",
"payment"
],
"homepage": "https://github.com/hiqdev/omnipay-yandexmoney",
"license": "MIT",
"support": {
"email": "[email protected]",
"source": "https://github.com/hiqdev/omnipay-yandexmoney",
"issues": "https://github.com/hiqdev/omnipay-yandexmoney/issues",
"wiki": "https://github.com/hiqdev/omnipay-yandexmoney/wiki",
"forum": "http://forum.hiqdev.com/"
},
"authors": [
{
"name": "Andrii Vasyliev",
"role": "Project lead",
"email": "[email protected]",
"homepage": "http://hipanel.com/"
},
{
"name": "Dmitry Naumenko",
"role": "Lead backend developer",
"email": "[email protected]",
"homepage": "http://silverfire.me/"
},
{
"name": "Andrey Klochok",
"role": "Lead frontend developer",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
},
{
"name": "Yuriy Myronchuk",
"role": "QA Lead",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
}
],
"minimum-stability": "dev",
"require": {
"omnipay/common": "^3.0"
},
"require-dev": {
"omnipay/tests": "^3.0",
"hiqdev/hidev-hiqdev": "dev-master",
"hiqdev/hidev-php": "dev-master"
},
"autoload": {
"psr-4": {
"Omnipay\\YandexMoney\\": "src",
"Omnipay\\YandexMoney\\Tests\\": "tests",
"Omnipay\\YandexMoney\\Tests\\Stubs\\": "tests/stubs"
}
}
}