-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.64 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.64 KB
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
{
"name": "paysera/lib-delivery-sdk",
"description": "PHP SDK for Paysera delivery gateway integration",
"type": "library",
"license": "LGPL-3.0-or-later",
"autoload": {
"psr-4": {
"Paysera\\DeliverySdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paysera\\DeliverySdk\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Paysera",
"homepage": "https://www.paysera.com/"
}
],
"require": {
"php": ">=7.4",
"paysera/lib-delivery-api-merchant-client": "^1.5",
"psr/container": "^2.0",
"webtopay/libwebtopay": "^3.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.0.*",
"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": "vendor/bin/phpunit ./tests --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 check"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"prefer-stable": true,
"minimum-stability": "stable"
}