-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.72 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.72 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "spryker/api-platform",
"type": "library",
"description": "ApiPlatform module",
"license": "proprietary",
"require": {
"api-platform/api-pack": "^1.4.0",
"api-platform/doctrine-common": "^4.3.0",
"api-platform/doctrine-orm": "^4.3.0",
"api-platform/documentation": "^4.3.0",
"api-platform/hal": "^4.3.0",
"api-platform/http-cache": "^4.3.0",
"api-platform/hydra": "^4.3.0",
"api-platform/json-api": "^4.3.0",
"api-platform/json-schema": "^4.3.0",
"api-platform/jsonld": "^4.3.0",
"api-platform/metadata": "^4.3.0",
"api-platform/openapi": "^4.3.0",
"api-platform/serializer": "^4.3.0",
"api-platform/state": "^4.3.0",
"api-platform/symfony": "^4.3.0",
"api-platform/validator": "^4.3.0",
"friendsofcxml/cxml-php": "^2.0.0",
"php": ">=8.3",
"spryker/entity-tag": "^1.0.0",
"spryker/glossary-storage": "^1.0.0",
"spryker/kernel": "^3.48.0",
"spryker/locale": "^4.0.0",
"spryker/log": "^3.0.0",
"spryker/oauth": "^2.0.0",
"spryker/store": "^1.0.0",
"spryker/transfer": "^3.27.0",
"symfony/config": "^6.0.0 || ^7.0.0",
"symfony/console": "^6.0.0 || ^7.0.0",
"symfony/expression-language": "^6.0.0 || ^7.0.0",
"symfony/finder": "^6.0.0 || ^7.0.0",
"symfony/http-kernel": "^6.0.0 || ^7.0.0",
"symfony/security-bundle": "^6.0.0 || ^7.0.0",
"symfony/yaml": "^6.0.0 || ^7.0.0"
},
"require-dev": {
"spryker/code-sniffer": "*",
"spryker/console": "*",
"spryker/container": "*",
"spryker/symfony": "*",
"spryker/testify": "*",
"symfony/framework-bundle": "*"
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerTest\\ApiPlatform\\Helper\\": "tests/SprykerTest/ApiPlatform/_support/Helper/",
"SprykerTest\\": "tests/SprykerTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/SprykerStrict/ruleset.xml src/ tests/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/SprykerStrict/ruleset.xml src/ tests/"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"keywords": [
"spryker",
"api-platform",
"code-generation",
"schema",
"api"
]
}