-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
39 lines (39 loc) · 844 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
{
"name": "paveldanilin/php-tinkoff-payment",
"description": "Tinkoff payment client for PHP 7.4+",
"keywords": ["Tinkoff", "pay", "payment", "kassa"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pavel",
"email": "pavel.k.danilin@gmail.com"
}
],
"autoload": {
"psr-4": {
"Pada\\Tinkoff\\Payment\\": "src/"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Pada\\Tinkoff\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.4.0",
"paveldanilin/rest-client": "1.3.5"
},
"require-dev": {
"phpstan/phpstan": "0.12.99",
"phpunit/phpunit": "9.5.*",
"monolog/monolog": "2.8.0"
},
"scripts": {
"test": [
"php -d memory_limit=4G ./vendor/bin/phpstan analyse -c phpstan.neon",
"php ./vendor/bin/phpunit"
]
}
}