-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 948 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
{
"name": "trstd/cot-integration-library",
"type": "library",
"description": "A PHP integration library for connecting to Community of Trust platform.",
"keywords": [
"cot",
"trstd",
"trustedshops",
"integration",
"library"
],
"homepage": "https://github.com/trustedshops-public/cot-php-integration-library",
"license": "MIT",
"require": {
"php": ">=7.4",
"firebase/php-jwt": "^6",
"phpseclib/phpseclib": "^3",
"monolog/monolog": "^2",
"phpfastcache/phpfastcache": "^8",
"symfony/http-client": "^5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"TRSTD\\COT\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false
}
}