-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
73 lines (73 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "turbine-kreuzberg/spryker-configcat",
"description": "ConfigCat wrapper for spryker",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"platform": {
"php": "8.0.14"
},
"use-include-path": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"TurbineKreuzberg\\": "src/TurbineKreuzberg/"
}
},
"autoload-dev": {
"psr-4": {
"Unit\\": "tests/Unit",
"Functional\\": "tests/Functional",
"Acceptance\\": "tests/Acceptance"
}
},
"authors": [
{
"name": "Ben Kuhn",
"email": "[email protected]"
},
{
"name": "Edward Mateja",
"email": "[email protected]"
},
{
"name": "Firat Cimen",
"email": "[email protected]"
},
{
"name": "Christian Muellenhagen",
"email": "[email protected]"
},
{
"name": "Helder Correia",
"email": "[email protected]"
},
{
"name": "Serhii Nefodov",
"email": "[email protected]"
}
],
"require": {
"php": ">=8",
"configcat/configcat-client": "^6.0.0",
"psr/simple-cache": "^1.0.1",
"spryker/kernel": "^3.54.0",
"spryker/storage": "^3.18.0"
},
"require-dev": {
"codeception/codeception": "4.1.29",
"codeception/module-asserts": "^1.0.0",
"codeception/module-phpbrowser": "^1.0.0",
"dg/bypass-finals": "^1.3",
"phpstan/phpstan": "1.4.6",
"spryker/code-sniffer": "0.17.4",
"spryker/testify": "3.43.0"
}
}