-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (52 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
{
"name": "paysera/lib-checkout-sdk-facade",
"description": "PHP checkout SDK facade for Paysera payment gateway integration",
"type": "library",
"license": "LGPL-3.0-or-later",
"autoload": {
"psr-4": {
"Paysera\\CheckoutSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paysera\\CheckoutSdk\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Paysera",
"homepage": "https://www.paysera.com/"
}
],
"require": {
"php": ">=7.4",
"psr/container": "^2.0",
"webtopay/libwebtopay": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.38",
"mockery/mockery": "^1.6",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan analyse --generate-baseline --allow-empty-baseline",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"phpunit": "php ./vendor/bin/phpunit --do-not-cache-result",
"test-coverage": "php ./vendor/bin/phpunit --do-not-cache-result --coverage-html coverage",
"php-cs-fixer": "vendor/bin/php-cs-fixer"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"prefer-stable": true,
"minimum-stability": "stable"
}