-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
51 lines (51 loc) · 1.37 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
{
"name": "fruitware/victoria-bank-gateway",
"type": "library",
"description": "Victoria bank e-Commerce Gateway merchant interface",
"keywords": [
"victoria",
"bank",
"payment",
"gateway"
],
"homepage": "https://github.com/Fruitware/VictoriaBankGateway",
"license": "MIT",
"authors": [
{
"name": "Coroliov Oleg",
"email": "[email protected]",
"homepage": "https://github.com/ruscon",
"role": "Developer"
},
{
"name": "Serge Beresnev",
"email": "[email protected]",
"homepage": "https://github.com/keriat",
"role": "Developer"
}
],
"require": {
"php": ">=5.5",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"squizlabs/php_codesniffer": "^2.5"
},
"suggest": {
"monolog/monolog": "^1.0"
},
"scripts": {
"test": "phpunit --colors=always",
"fasttest": "phpdbg -qrr vendor/bin/phpunit --colors=always",
"lint": "phpcs",
"fmt": "phpcbf",
"doc": "php bin/apigen.phar generate",
"metrics": "php bin/phpmetrics.phar --report-html=artifacts/metrics.html src/"
},
"autoload": {
"psr-4": {
"Fruitware\\VictoriaBankGateway\\": "src/"
}
}
}