-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
56 lines (56 loc) · 1.57 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
54
55
56
{
"name": "yoomoney/yookassa-sdk-php",
"description": "This is a developer tool for integration with YooMoney.",
"type": "library",
"license": "MIT",
"homepage": "https://yookassa.ru/developers/api",
"keywords": ["yoomoney", "yookassa", "payments", "api", "sdk"],
"authors": [
{
"name": "YooMoney",
"email": "[email protected]"
}
],
"version": "2.3.0",
"require": {
"php": ">=5.3.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"psr/log": "^1.0"
},
"require-dev": {
"ext-xml": "*",
"phpunit/phpunit": "^4.8.35 || ^5.7",
"mockery/mockery": "^0.9.9"
},
"scripts": {
"test": [
"@phpunit",
"@phpcbf",
"@phpcs",
"@phpmd"
],
"ci": [
"@phplint",
"@phpunit",
"@phpcs",
"@phpmd"
],
"phplint": "vendor/bin/parallel-lint --exclude vendor/ --exclude .idea/ -e php,module,inc,install,profile,theme .",
"phpunit": "vendor/bin/phpunit --configuration=phpunit.xml.dist",
"phpcs": "vendor/bin/phpcs --ignore=vendor/,.idea/ --standard=phpcs.xml --extensions=php,module,inc,install,profile,theme,css,info,txt,md,yml --report=full .",
"phpcbf": "vendor/bin/phpcbf --ignore=vendor/,.idea/ --standard=phpcs.xml --extensions=php,module,inc,install,profile,theme,css,info,txt,md,yml .",
"phpmd": "vendor/bin/phpmd --exclude vendor/,.idea/ --suffixes php,module,inc,install,profile,theme . text phpmd.xml"
},
"autoload": {
"psr-4": {
"YooKassa\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\YooKassa\\": "tests/"
}
}
}