-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.52 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
{
"name": "payone-gmbh/pcp-serversdk-php",
"type": "library",
"description": "PHP SDK to communicate with the PAYONE Commerce Platform server-to-server API",
"keywords": [
"SDK"
],
"license": "MIT",
"authors": [
{
"name": "PAYONE GmbH"
}
],
"version": "1.0.1",
"require": {
"php": "~8.2||~8.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"symfony/serializer": "^7.1",
"symfony/property-access": "^7.1",
"symfony/property-info": "^7.1",
"phpdocumentor/reflection-docblock": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^11.5.1",
"phpstan/phpstan": "^1.12.10",
"friendsofphp/php-cs-fixer": "^3.65.0"
},
"autoload": {
"psr-4": {
"PayoneCommercePlatform\\Sdk\\": [
"src/PayoneCommercePlatform/Sdk",
"lib/PayoneCommercePlatform/Sdk"
]
}
},
"autoload-dev": {
"psr-4": {
"PayoneCommercePlatform\\Sdk\\": [
"tests/PayoneCommercePlatform/Sdk"
]
}
},
"scripts": {
"demo": "php ./examples/demo-app/src/DemoApp.php",
"format-check": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer check",
"format": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix",
"lint": "phpstan analyze -l 9 src tests --memory-limit 1G",
"test": "phpunit tests",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-clover=coverage.xml tests",
"coverage-report": "XDEBUG_MODE=coverage phpunit --coverage-html=coverage tests"
}
}