-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 2.39 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": "spryker/locale",
"type": "library",
"description": "Locale module",
"license": "proprietary",
"require": {
"php": ">=8.2",
"spryker/acl-merchant-portal-extension": "^1.0.0",
"spryker/application-extension": "^1.0.0",
"spryker/event-dispatcher-extension": "^1.0.0",
"spryker/kernel": "^3.52.0",
"spryker/locale-extension": "^1.0.0",
"spryker/propel-orm": "^1.8.0",
"spryker/store": "^1.19.0",
"spryker/store-extension": "^1.0.0",
"spryker/transfer": "^3.27.0",
"spryker/willdurand-negotiation": "^1.0.0",
"spryker/zed-request-extension": "^1.1.0"
},
"require-dev": {
"spryker/code-sniffer": "*",
"spryker/config": "*",
"spryker/container": "*",
"spryker/event-dispatcher": "*",
"spryker/installer": "*",
"spryker/propel": "*",
"spryker/storage": "*",
"spryker/symfony": "*",
"spryker/testify": "*"
},
"suggest": {
"spryker/config": "If you want to use LocaleApplicationPlugin",
"spryker/container": "If you want to use LocalePlugin.",
"spryker/event-dispatcher": "If you want to use EventDispatcher plugin.",
"spryker/installer": "If you want to use Installer plugins.",
"spryker/symfony": "If you want to use EventDispatcher plugin."
},
"autoload": {
"psr-4": {
"Spryker\\": "src/Spryker/",
"SprykerTest\\Yves\\Locale\\Helper\\": "tests/SprykerTest/Yves/Locale/_support/Helper/",
"SprykerTest\\Zed\\Locale\\Helper\\": "tests/SprykerTest/Zed/Locale/_support/Helper/",
"SprykerTest\\Shared\\Locale\\Helper\\": "tests/SprykerTest/Shared/Locale/_support/Helper/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerTest\\": "tests/SprykerTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}