-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
117 lines (117 loc) · 3.97 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "setono/sylius-peak-wms-plugin",
"description": "Integrate your store with Peak WMS",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"sylius",
"sylius-plugin"
],
"require": {
"php": ">=8.1",
"doctrine/orm": "^2.15",
"doctrine/persistence": "^2.5 || ^3.2",
"knplabs/knp-menu": "^3.4",
"liip/imagine-bundle": "^2.0",
"ocramius/doctrine-batch-utils": "^2.4",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.1",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"setono/composite-compiler-pass": "^1.1",
"setono/doctrine-orm-trait": "^1.1",
"setono/peak-wms-php-sdk": "^1.2.1",
"sylius/admin-bundle": "^1.0",
"sylius/core": "^1.0",
"sylius/core-bundle": "^1.0",
"sylius/grid-bundle": "^1.0",
"sylius/order": "^1.0",
"sylius/payment": "^1.0",
"sylius/resource-bundle": "^1.0",
"sylius/shipping": "^1.0",
"sylius/ui-bundle": "^1.0",
"symfony/config": "^5.4 || ^6.4",
"symfony/console": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/event-dispatcher": "^5.4 || ^6.4",
"symfony/framework-bundle": "^5.4 || ^6.4",
"symfony/http-foundation": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/messenger": "^5.4 || ^6.4",
"symfony/routing": "^5.4 || ^6.4",
"symfony/workflow": "^5.4 || ^6.4",
"webmozart/assert": "^1.11",
"winzou/state-machine": "^0.4"
},
"require-dev": {
"api-platform/core": "^2.7.16",
"babdev/pagerfanta-bundle": "^3.8",
"behat/behat": "^3.14",
"beyondcode/expose": "^2.6",
"doctrine/doctrine-bundle": "^2.11",
"infection/infection": "^0.27.6",
"jms/serializer-bundle": "^4.2",
"lexik/jwt-authentication-bundle": "^2.16",
"matthiasnoback/symfony-dependency-injection-test": "^4.3 || ^5.0",
"nyholm/psr7": "^1.8",
"phpspec/prophecy-phpunit": "^2.2",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^5.1",
"setono/code-quality-pack": "^2.8",
"shipmonk/composer-dependency-analyser": "^1.6",
"sylius/sylius": "~1.12.13",
"symfony/browser-kit": "^5.4 || ^6.4",
"symfony/css-selector": "^5.4 || ^6.4",
"symfony/debug-bundle": "^5.4 || ^6.4",
"symfony/dotenv": "^5.4 || ^6.4",
"symfony/http-client": "^5.4 || ^6.4",
"symfony/intl": "^5.4 || ^6.4",
"symfony/phpunit-bridge": "^7.1",
"symfony/property-info": "^5.4 || ^6.4",
"symfony/serializer": "^5.4 || ^6.4",
"symfony/web-profiler-bundle": "^5.4 || ^6.4",
"symfony/webpack-encore-bundle": "^1.17",
"willdurand/negotiation": "^3.1",
"zenstruck/messenger-test": "^1.10"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusPeakPlugin\\": "src/"
},
"files": [
"src/Resources/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\SyliusPeakPlugin\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"php-http/discovery": false,
"symfony/thanks": false
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"functional-tests": "phpunit --testsuite functional",
"rector": "rector",
"unit-tests": "phpunit --testsuite unit"
}
}