forked from igorbunov/checkbox-in-ua-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1006 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": "igorbunov/checkbox-in-ua-php-sdk",
"description": "PHP SDK for integration with checkbox.in.ua api",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "igorbunov",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"guzzlehttp/guzzle": "^7.4",
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "^3.5.7",
"phpstan/phpstan": "^0.12.57",
"otis22/php-coverage-checker": "^1.2"
},
"autoload": {
"psr-4": {
"igorbunov\\Checkbox\\" : "src"
}
},
"scripts": {
"unit-tests": [
"vendor/bin/phpunit --testsuite main && vendor/bin/php-coverage-checker build/logs/clover.xml 60"
],
"static": [
"vendor/bin/phpcs --ignore-annotations --standard=PSR12 src tests && vendor/bin/phpstan analyse --level=max src"
],
"all-tests": [
"composer check-composer && composer unit-test && composer static"
]
}
}