-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
44 lines (44 loc) · 977 Bytes
/
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
{
"name": "yii-cms/yii2-robokassa",
"description": "Robokassa payment extension.",
"keywords": [
"yii2",
"robokassa"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sergey Gonimar",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1||8.0",
"ext-mbstring": "*",
"yiisoft/yii2": "~2.0.14",
"yiisoft/yii2-httpclient": "~2.0.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"robokassa\\": "src/"
}
},
"scripts": {
"phpcs": "phpcs --standard=PSR12 --runtime-set ignore_warnings_on_exit 1 src",
"phpmd": "phpmd src ansi phpmd.xml -v",
"phpunit": "phpunit --coverage-text --coverage-clover=coverage.xml --configuration=phpunit.xml.dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}