-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.21 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
74
75
76
{
"name": "valantic-spryker/sitemap-storage",
"type": "library",
"description": "Add functionality to retrieve sitemap data from storage (Redis).",
"license": "proprietary",
"require": {
"php": ">=7.4",
"valantic-spryker/sitemap": "^4.0.4"
},
"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": "7.4"
},
"preferred-install": "dist",
"use-include-path": true,
"sort-packages": true,
"github-protocols": [
"https"
],
"process-timeout": 900,
"chromium-revision": 814168,
"gitlab-domains": [
"gitlab.nxs360.com"
],
"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"
},
"repositories": {
"gitlab.nxs360.com/461": {
"type": "composer",
"url": "https://gitlab.nxs360.com/api/v4/group/461/-/packages/composer/packages.json"
}
}
}