-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
45 lines (45 loc) · 1.16 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
{
"name": "quickpay/quickpay-php-client",
"type": "library",
"description": "PHP-SDK to communicate with the payment provider QuickPay",
"homepage": "https://github.com/QuickPay/quickpay-php-client",
"license": "MIT",
"require": {
"php": ">=8.0",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"QuickPay\\": "QuickPay/"
}
},
"autoload-dev": {
"psr-4": {
"QuickPay\\Tests\\": "Tests/api/"
}
},
"require-dev" : {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.2.1",
"phpstan/phpstan": "^1.1.2",
"thecodingmachine/phpstan-strict-rules": "^1.0.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi",
"test:unit": "phpunit --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
],
"coverage": "@test:unit --coverage"
}
}