-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (45 loc) · 1.2 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
{
"name": "dicr/yii2-liqpay",
"type": "yii2-extension",
"license": "MIT",
"description": "Библиотека платежей LiqPay для Yii2",
"keywords": ["dicr", "php", "yii2", "liqpay"],
"homepage": "https://gitlab.com/dicr/yii2-liqpay",
"support": {
"source": "https://gitlab.com/dicr/yii2-liqpay.git"
},
"authors": [
{
"name": "Igor Tarasov",
"email": "[email protected]",
"homepage": "https://dicr.org",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"dicr\\liqpay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"dicr\\tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "~8.0",
"ext-json": "*",
"yiisoft/yii2": "~2.0",
"dicr/yii2-validate": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "9.5",
"roave/security-advisories": "dev-latest"
},
"repositories": [
{"type": "composer", "url": "https://asset-packagist.org"},
{"type": "git", "url": "https://gitlab.com/dicr/yii2-validate.git"}
]
}