-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.78 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.78 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "klevu/php-sdk",
"description": "Klevu SDK for PHP",
"type": "library",
"version": "1.1.3",
"require": {
"php": "~8.1|~8.2|~8.3|~8.4",
"ext-libxml": "*",
"ext-simplexml": "*",
"psr/log": "*",
"psr/http-client": "*",
"psr/http-message": "*",
"php-http/discovery": "~1.15",
"linchpin/phpdocumentor-template-markdown": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"php-http/guzzle7-adapter": "*",
"captainhook/captainhook": "^5.10",
"captainhook/plugin-composer": "^5.3",
"mrm-commerce/phpcs-security-audit": "^3.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.10",
"slevomat/coding-standard": "~8.0"
},
"suggest": {
"guzzlehttp/guzzle": "*",
"nyholm/psr7": "*",
"monolog/monolog": "*"
},
"autoload": {
"psr-4": {
"Klevu\\PhpSDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Klevu\\PhpSDK\\Example\\": "examples/src/",
"Klevu\\PhpSDK\\Test\\": "tests/"
}
},
"keywords": ["klevu", "sdk"],
"license": ["MIT"],
"authors": [
{
"name": "Klevu Oy",
"email": "contact@klevu.com",
"homepage": "https://www.klevu.com"
}
],
"support": {
"forum": "https://community.klevu.com",
"issues": "https://github.com/klevu/php-sdk/issues"
},
"config": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"captainhook-config": "captainhook.json"
}
}