-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.95 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
{
"name": "valantic-spryker/cache-manager",
"type": "library",
"description": "Add functionality to receive store specific configurations",
"license": "proprietary",
"require": {
"php": ">=8.0",
"spryker/kernel": "^3.0.0",
"spryker/storage": "^3.0.0"
},
"autoload": {
"psr-4": {
"ValanticSpryker\\": "src/ValanticSpryker/"
}
},
"autoload-dev": {
"psr-4": {
"ValanticSprykerTest\\": "tests/ValanticSprykerTest/",
"Generated\\": "src/Generated/",
"Orm\\Zed\\": "src/Orm/Zed/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.0.19"
},
"preferred-install": "dist",
"use-include-path": true,
"sort-packages": true,
"github-protocols": [
"https"
],
"process-timeout": 900,
"chromium-revision": 814168,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"authors": [
{
"name": "Valantic",
"homepage": "https://www.valantic.com"
}
],
"keywords": [
"spryker"
],
"include-path": [
"src/"
],
"require-dev": {
"fond-of-codeception/spryker": "^1.0 || ^2.0",
"spryker-sdk/phpstan-spryker": "*",
"spryker/architecture-sniffer": "*",
"spryker/code-sniffer": "*",
"spryker/development": "*",
"spryker/testify": "*"
},
"scripts": {
"cs-fix": "phpcbf --standard=phpcs.xml src",
"cs-check": "phpcs -s --standard=phpcs.xml --report=full src",
"md-check": "phpmd src/ text phpmd-ruleset.xml --minimumpriority 2",
"stan": "php -d memory_limit=3072M vendor/bin/phpstan analyze -l 4 src/ValanticSpryker/",
"test": "codecept run --env standalone --coverage-text --no-colors --coverage-html"
}
}