-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
53 lines (53 loc) · 1.51 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
{
"name": "sergey-zatulivetrov/tinkoff-acquiring-client",
"type": "library",
"version": "4.0.0",
"description": "Client for working with Tinkoff's acquiring REST API",
"keywords": [
"tinkoff",
"acquiring",
"credit card",
"client"
],
"scripts": {
"tests": "php -d xdebug.mode=off ./vendor/bin/phpunit -c ./phpunit.xml",
"analyse": [
"php vendor/bin/phpcs -d memory_limit=256M --standard=PSR12 src --colors -p",
"php vendor/bin/phpstan analyse -l 7 src"
],
"coverage": "php -d xdebug.mode=coverage ./vendor/bin/phpunit -c ./phpunit.xml --coverage-html=./coverage"
},
"homepage": "https://github.com/sergey-zatulivetrov/tinkoff-acquiring-client",
"license": "MIT",
"authors": [
{
"name": "Sergey Zatulivetrov",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-openssl": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"psr/log": "^3.0",
"psr/cache": "^3.0"
},
"autoload": {
"psr-4": {
"SergeyZatulivetrov\\TinkoffAcquiring\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SergeyZatulivetrov\\TinkoffAcquiring\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": ">=6.5.14",
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^1.10"
}
}