-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.56 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.56 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
{
"name": "klevu/php-pipelines",
"description": "Klevu pipeline-based conversion library",
"type": "library",
"version": "1.1.1",
"require": {
"php": "~8.1|~8.2|~8.3|~8.4",
"symfony/yaml": "^5.0|^6.0|^7.0",
"psr/container": "^1.0|^2.0",
"psr/log": "^1.0|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"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": {
"monolog/monolog": "*"
},
"autoload": {
"psr-4": {
"Klevu\\Pipelines\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Klevu\\Pipelines\\Test\\": "tests/"
}
},
"keywords": ["klevu", "pipelines", "data conversion"],
"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-pipelines/issues"
},
"config": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"captainhook-config": "captainhook.json"
}
}