-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.6 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
57
58
59
60
{
"name": "evgenyneverov/yookassa-sdk-laravel",
"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.8.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",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "*",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"test": [
"@phpunit",
"@phpcbf",
"@phpcs",
"@phpmd"
],
"ci": [
"@phplint",
"@phpunit",
"@phpcs",
"@phpmd"
],
"phplint": "vendor/bin/parallel-lint --exclude vendor/ --exclude .idea/ --exclude tests/ -e php .",
"phpunit": "vendor/bin/phpunit --configuration=phpunit.xml.dist",
"phpcs": "vendor/bin/phpcs --ignore=vendor/,.idea/,tests/ --standard=phpcs.xml --extensions=php --report=full .",
"phpcbf": "vendor/bin/phpcbf --ignore=vendor/,.idea/,tests/ --standard=phpcs.xml --extensions=php .",
"phpmd": "vendor/bin/phpmd --exclude vendor/,.idea/,tests/ --suffixes php . text phpmd.xml"
},
"autoload": {
"psr-4": {
"YooKassa\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\YooKassa\\": "tests/"
}
}
}