-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (61 loc) · 1.35 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
{
"name": "valantic-spryker-shop/sitemap",
"type": "library",
"description": "Provides sitemap",
"license": "proprietary",
"require": {
"php": ">=7.4",
"spryker/kernel": "^3.30.0"
},
"autoload": {
"psr-4": {
"ValanticSpryker\\": "src/ValanticSpryker/"
}
},
"autoload-dev": {
"psr-4": {
"ValanticSprykerTest\\": "tests/ValanticSprykerTest/"
}
},
"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,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"authors": [
{
"name": "Valantic",
"homepage": "https://www.valantic.com"
}
],
"keywords": [
"spryker"
],
"include-path": [
"src/"
],
"require-dev": {
"spryker/code-sniffer": "^0.17.18",
"spryker-sdk/phpstan-spryker": "^0.4.0",
"spryker/architecture-sniffer": "^0.5.7",
"spryker/development": "^3.34"
},
"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"
}
}