-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
50 lines (48 loc) · 1.43 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
{
"name": "dicr/yii2-sberpay-rest",
"type": "yii2-extension",
"license": "MIT",
"description": "Sberbank REST API для Yii2",
"homepage": "https://gitlab.com/dicr/yii2-sberpay-rest",
"keywords": ["dicr", "yii2", "payment", "sberbank", "rest", "sberpay"],
"authors": [
{
"name": "Igor Tarasov",
"email": "[email protected]",
"homepage": "https://dicr.org",
"role": "developer"
}
],
"support": {
"source": "https://gitlab.com/dicr/yii2-sberpay-rest.git"
},
"autoload": {
"psr-4": {
"dicr\\sberpay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"dicr\\tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": "~8.0",
"yiisoft/yii2": "~2.0",
"yiisoft/yii2-httpclient": "~2.0",
"dicr/yii2-json": "~3.0",
"dicr/yii2-helper": "~6.0",
"dicr/yii2-validate": "~3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "~9.5"
},
"repositories": [
{"type": "composer", "url": "https://asset-packagist.org"},
{"type": "gitlab", "url": "https://gitlab.com/dicr/yii2-json.git"},
{"type": "gitlab", "url": "https://gitlab.com/dicr/yii2-helper.git"},
{"type": "gitlab", "url": "https://gitlab.com/dicr/yii2-validate.git"}
]
}