-
Notifications
You must be signed in to change notification settings - Fork 48
/
composer.json
1383 lines (1383 loc) · 70.5 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "spryker-shop/suite",
"description": "Spryker Shop Suite",
"license": "MIT",
"require": {
"php": ">=8.2",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-gmp": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-pdo_pgsql": "*",
"ext-pgsql": "*",
"ext-readline": "*",
"ext-redis": "*",
"spryker-eco/authorization-picking-app-backend-api": "^0.2.0",
"spryker-eco/loggly": "^0.1.0",
"spryker-shop/agent-page": "^1.10.0",
"spryker-shop/agent-page-extension": "^1.0.0",
"spryker-shop/agent-widget": "^1.3.3",
"spryker-shop/asset-widget": "^1.0.0",
"spryker-shop/availability-notification-page": "^1.1.2",
"spryker-shop/availability-notification-widget": "^1.1.4",
"spryker-shop/availability-widget": "^1.0.0",
"spryker-shop/barcode-widget": "^1.0.0",
"spryker-shop/business-on-behalf-widget": "^1.0.0",
"spryker-shop/calculation-page": "^1.3.2",
"spryker-shop/cart-code-widget": "^1.4.1",
"spryker-shop/cart-note-widget": "^1.4.0",
"spryker-shop/cart-page": "^3.27.1",
"spryker-shop/cart-page-extension": "^1.0.0",
"spryker-shop/cart-reorder-page": "^0.1.0",
"spryker-shop/cart-reorder-page-extension": "^1.0.0",
"spryker-shop/catalog-page": "^1.0.0",
"spryker-shop/category-image-storage-widget": "^1.0.0",
"spryker-shop/category-widget": "^1.0.0",
"spryker-shop/chart-widget": "^0.2.0",
"spryker-shop/checkout-page": "^3.0.0",
"spryker-shop/checkout-page-extension": "^1.0.0",
"spryker-shop/checkout-widget": "^1.0.0",
"spryker-shop/click-and-collect-page-example": "^0.3.0",
"spryker-shop/cms-block-widget": "^2.0.0",
"spryker-shop/cms-content-widget-chart-connector": "^1.0.0",
"spryker-shop/cms-content-widget-product-connector": "^1.3.0",
"spryker-shop/cms-content-widget-product-set-connector": "^1.0.0",
"spryker-shop/cms-page": "^1.6.0",
"spryker-shop/cms-search-page": "^1.3.2",
"spryker-shop/cms-slot-block-widget": "^1.0.0",
"spryker-shop/comment-widget": "^1.2.2",
"spryker-shop/comment-widget-extension": "^1.0.0",
"spryker-shop/company-page": "^2.18.0",
"spryker-shop/company-user-agent-widget": "^1.1.2",
"spryker-shop/company-user-invitation-page": "^2.4.2",
"spryker-shop/company-widget": "^1.7.1",
"spryker-shop/configurable-bundle-note-widget": "^1.0.0",
"spryker-shop/configurable-bundle-page": "^1.0.0",
"spryker-shop/configurable-bundle-widget": "^1.0.0",
"spryker-shop/content-banner-widget": "^1.0.0",
"spryker-shop/content-file-widget": "^2.0.0",
"spryker-shop/content-navigation-widget": "^1.0.0",
"spryker-shop/content-product-set-widget": "^1.0.0",
"spryker-shop/content-product-widget": "^1.0.0",
"spryker-shop/currency-widget": "^1.4.2",
"spryker-shop/customer-page": "^2.34.0",
"spryker-shop/customer-page-extension": "^1.0.0",
"spryker-shop/customer-reorder-widget": "^6.11.0",
"spryker-shop/customer-reorder-widget-extension": "^1.0.0",
"spryker-shop/customer-validation-page": "^1.0.0",
"spryker-shop/date-time-configurator-page-example": "^0.5.0",
"spryker-shop/discount-promotion-widget": "^3.3.1",
"spryker-shop/discount-widget": "^1.8.0",
"spryker-shop/error-page": "^1.9.0",
"spryker-shop/error-page-extension": "^1.0.0",
"spryker-shop/file-manager-widget": "^2.0.0",
"spryker-shop/gift-card-widget": "^1.0.0",
"spryker-shop/home-page": "^1.1.2",
"spryker-shop/language-switcher-widget": "^1.2.0",
"spryker-shop/merchant-opening-hours-widget": "^1.0.0",
"spryker-shop/merchant-page": "^1.0.0",
"spryker-shop/merchant-product-offer-service-point-availability-widget": "^0.3.0",
"spryker-shop/merchant-product-offer-widget": "^2.0.0",
"spryker-shop/merchant-product-offer-widget-extension": "^1.0.0",
"spryker-shop/merchant-product-widget": "^1.0.0",
"spryker-shop/merchant-profile-widget": "^1.0.0",
"spryker-shop/merchant-relation-request-page": "^1.0.0",
"spryker-shop/merchant-relation-request-widget": "^1.0.0",
"spryker-shop/merchant-relationship-page": "^1.0.0",
"spryker-shop/merchant-relationship-widget": "^1.0.0",
"spryker-shop/merchant-sales-order-widget": "^1.0.0",
"spryker-shop/merchant-sales-return-widget": "^1.0.0",
"spryker-shop/merchant-search-widget": "^1.0.0",
"spryker-shop/merchant-switcher-widget": "^0.8.0",
"spryker-shop/merchant-widget": "^1.0.0",
"spryker-shop/money-widget": "^1.4.0",
"spryker-shop/multi-cart-page": "^2.5.0",
"spryker-shop/multi-cart-widget": "^1.7.0",
"spryker-shop/newsletter-page": "^1.1.3",
"spryker-shop/newsletter-widget": "^1.7.0",
"spryker-shop/order-cancel-widget": "^1.0.0",
"spryker-shop/order-custom-reference-widget": "^1.0.0",
"spryker-shop/payment-app-widget": "^1.0.0",
"spryker-shop/payment-app-widget-extension": "^1.0.0",
"spryker-shop/payment-page": "^1.0.0",
"spryker-shop/persistent-cart-share-page": "^1.2.0",
"spryker-shop/persistent-cart-share-widget": "^1.2.0",
"spryker-shop/price-product-volume-widget": "^1.6.0",
"spryker-shop/price-product-widget": "^1.0.0",
"spryker-shop/price-widget": "^1.4.2",
"spryker-shop/product-alternative-widget": "^1.4.0",
"spryker-shop/product-barcode-widget": "^1.1.3",
"spryker-shop/product-bundle-widget": "^1.0.0",
"spryker-shop/product-category-widget": "^1.0.0",
"spryker-shop/product-comparison-page": "^1.0.0",
"spryker-shop/product-comparison-widget": "^1.0.0",
"spryker-shop/product-configuration-cart-widget": "^1.0.0",
"spryker-shop/product-configuration-cart-widget-extension": "^1.0.0",
"spryker-shop/product-configuration-shopping-list-widget": "^1.0.0",
"spryker-shop/product-configuration-shopping-list-widget-extension": "^1.0.0",
"spryker-shop/product-configuration-widget": "^1.0.0",
"spryker-shop/product-configuration-widget-extension": "^1.0.0",
"spryker-shop/product-configuration-wishlist-widget": "^1.0.0",
"spryker-shop/product-configuration-wishlist-widget-extension": "^1.0.0",
"spryker-shop/product-configurator-gateway-page": "^1.0.0",
"spryker-shop/product-configurator-gateway-page-extension": "^1.0.0",
"spryker-shop/product-detail-page": "^3.15.1",
"spryker-shop/product-discontinued-widget": "^1.1.1",
"spryker-shop/product-group-widget": "^1.7.2",
"spryker-shop/product-group-widget-extension": "^1.0.0",
"spryker-shop/product-image-widget": "^1.0.0",
"spryker-shop/product-label-widget": "^1.5.3",
"spryker-shop/product-measurement-unit-widget": "^1.0.0",
"spryker-shop/product-new-page": "^1.1.2",
"spryker-shop/product-offer-service-point-availability-widget": "^1.0.0",
"spryker-shop/product-offer-shopping-list-widget": "^1.0.0",
"spryker-shop/product-offer-widget": "^1.0.0",
"spryker-shop/product-option-widget": "^1.4.7",
"spryker-shop/product-packaging-unit-widget": "^1.0.0",
"spryker-shop/product-relation-widget": "^1.0.0",
"spryker-shop/product-replacement-for-widget": "^1.5.2",
"spryker-shop/product-review-widget": "^1.11.0",
"spryker-shop/product-search-widget": "^3.0.0",
"spryker-shop/product-search-widget-extension": "^1.0.0",
"spryker-shop/product-set-detail-page": "^1.9.0",
"spryker-shop/product-set-list-page": "^1.1.2",
"spryker-shop/product-set-widget": "^1.0.0",
"spryker-shop/product-widget": "^1.3.1",
"spryker-shop/quick-order-page": "^4.5.1",
"spryker-shop/quick-order-page-extension": "^1.1.1",
"spryker-shop/quote-approval-widget": "^1.3.0",
"spryker-shop/quote-request-agent-page": "^3.0.0",
"spryker-shop/quote-request-agent-page-extension": "^1.0.0",
"spryker-shop/quote-request-agent-widget": "^2.5.0",
"spryker-shop/quote-request-page": "^3.0.0",
"spryker-shop/quote-request-page-extension": "^1.0.0",
"spryker-shop/quote-request-widget": "^2.4.0",
"spryker-shop/redirect-page": "^1.1.0",
"spryker-shop/resource-share-page": "^1.2.0",
"spryker-shop/resource-share-page-extension": "^1.0.0",
"spryker-shop/sales-configurable-bundle-widget": "^1.4.1",
"spryker-shop/sales-order-amendment-widget": "^0.2.0",
"spryker-shop/sales-order-threshold-widget": "^1.1.4",
"spryker-shop/sales-product-bundle-widget": "^1.0.0",
"spryker-shop/sales-product-configuration-widget": "^1.0.0",
"spryker-shop/sales-product-configuration-widget-extension": "^1.0.0",
"spryker-shop/sales-return-page": "^1.0.0",
"spryker-shop/sales-return-page-extension": "^1.0.0",
"spryker-shop/sales-service-point-widget": "^1.0.0",
"spryker-shop/security-blocker-page": "^1.0.0",
"spryker-shop/service-point-cart-page": "^1.0.0",
"spryker-shop/service-point-widget": "^1.0.0",
"spryker-shop/session-agent-validation": "^1.0.0",
"spryker-shop/session-agent-validation-extension": "^1.0.0",
"spryker-shop/session-customer-validation-page": "^1.0.0",
"spryker-shop/session-customer-validation-page-extension": "^1.0.0",
"spryker-shop/shared-cart-page": "^2.4.1",
"spryker-shop/shared-cart-widget": "^1.7.0",
"spryker-shop/shipment-page": "^1.0.0",
"spryker-shop/shipment-type-widget": "^1.0.0",
"spryker-shop/shop-application": "^1.12.1",
"spryker-shop/shop-application-extension": "^1.0.0",
"spryker-shop/shop-cms-slot": "^1.0.0",
"spryker-shop/shop-cms-slot-extension": "^1.0.0",
"spryker-shop/shop-permission": "^1.2.2",
"spryker-shop/shop-router": "^1.0.0",
"spryker-shop/shop-router-extension": "^1.0.0",
"spryker-shop/shop-translator": "^1.0.0",
"spryker-shop/shop-ui": "^1.0.0",
"spryker-shop/shopping-list-note-widget": "^1.1.2",
"spryker-shop/shopping-list-page": "^1.0.0",
"spryker-shop/shopping-list-page-extension": "^1.0.0",
"spryker-shop/shopping-list-widget": "^1.0.0",
"spryker-shop/storage-router": "^0.1.0",
"spryker-shop/storage-router-extension": "^1.0.0",
"spryker-shop/store-widget": "^1.0.0",
"spryker-shop/tabs-widget": "^1.0.0",
"spryker-shop/tabs-widget-extension": "^1.0.0",
"spryker-shop/traceable-event-widget": "^1.0.0",
"spryker-shop/url-page": "^1.0.0",
"spryker-shop/wishlist-page": "^1.10.0",
"spryker-shop/wishlist-page-extension": "^1.0.0",
"spryker-shop/wishlist-widget": "^1.0.0",
"spryker/acl": "^3.0.0",
"spryker/acl-data-import": "^0.1.0",
"spryker/acl-entity": "^1.0.0",
"spryker/acl-entity-data-import": "^0.2.0",
"spryker/acl-entity-dummy-product": "^0.2.0",
"spryker/acl-entity-extension": "^1.0.0",
"spryker/acl-extension": "^1.0.0",
"spryker/acl-merchant-agent": "^1.0.0",
"spryker/acl-merchant-portal": "^1.10.1",
"spryker/acl-merchant-portal-extension": "^1.0.0",
"spryker/agent": "^1.5.0",
"spryker/agent-auth-rest-api": "^1.0.0",
"spryker/agent-dashboard-merchant-portal-gui": "^1.0.0",
"spryker/agent-dashboard-merchant-portal-gui-extension": "^1.0.0",
"spryker/agent-extension": "^1.0.0",
"spryker/agent-gui": "^1.0.0",
"spryker/agent-security-blocker-merchant-portal": "^1.0.0",
"spryker/agent-security-blocker-merchant-portal-gui": "^1.0.0",
"spryker/agent-security-merchant-portal-gui": "^1.0.0",
"spryker/alternative-products-rest-api": "^1.0.0",
"spryker/analytics-gui": "^1.0.0",
"spryker/analytics-gui-extension": "^1.0.0",
"spryker/api": "^0.4.0",
"spryker/api-extension": "^0.1.0",
"spryker/api-key": "^2.0.0",
"spryker/api-key-authorization-connector": "^1.0.0",
"spryker/api-key-gui": "^2.0.0",
"spryker/api-query-builder": "^0.1.0",
"spryker/app-catalog-gui": "^1.0.0",
"spryker/application": "^3.0.0",
"spryker/assertion": "^3.0.0",
"spryker/asset": "^1.0.0",
"spryker/asset-storage": "^1.0.0",
"spryker/auth-rest-api": "^2.14.0",
"spryker/auth-rest-api-extension": "^1.0.0",
"spryker/authentication": "^1.0.0",
"spryker/authentication-extension": "^1.0.0",
"spryker/authentication-oauth": "^1.0.0",
"spryker/authorization": "^1.0.0",
"spryker/authorization-extension": "^1.0.0",
"spryker/availability": "^9.12.2",
"spryker/availability-cart-connector": "^7.3.0",
"spryker/availability-cart-connector-extension": "^1.0.0",
"spryker/availability-data-feed": "^0.1.0",
"spryker/availability-extension": "^1.2.0",
"spryker/availability-gui": "^6.0.0",
"spryker/availability-gui-extension": "^1.0.0",
"spryker/availability-merchant-portal-gui": "^1.0.0",
"spryker/availability-notification": "^1.0.0",
"spryker/availability-notifications-rest-api": "^1.0.0",
"spryker/availability-storage": "^2.5.0",
"spryker/availability-storage-extension": "^1.0.0",
"spryker/barcode": "^1.0.0",
"spryker/barcode-extension": "^1.0.1",
"spryker/barcode-laminas": "^1.0.0",
"spryker/business-on-behalf": "^1.0.0",
"spryker/business-on-behalf-data-import": "^3.0.0",
"spryker/business-on-behalf-extension": "^1.0.0",
"spryker/business-on-behalf-gui": "^1.0.0",
"spryker/business-on-behalf-gui-extension": "^1.0.0",
"spryker/cache": "^3.0.0",
"spryker/calculation": "^4.0.0",
"spryker/calculation-extension": "^1.0.0",
"spryker/cart": "^7.10.2",
"spryker/cart-code": "^1.0.0",
"spryker/cart-code-extension": "^1.0.0",
"spryker/cart-codes-rest-api": "^1.3.1",
"spryker/cart-codes-rest-api-extension": "^1.0.0",
"spryker/cart-currency-connector": "^1.0.0",
"spryker/cart-extension": "^4.0.0",
"spryker/cart-note": "^1.0.0",
"spryker/cart-note-extension": "^1.0.0",
"spryker/cart-note-merchant-portal-gui": "^1.0.0",
"spryker/cart-note-merchant-sales-order-gui": "^1.0.0",
"spryker/cart-note-product-bundle-connector": "^1.0.0",
"spryker/cart-notes-backend-api": "^1.0.0",
"spryker/cart-permission-connector": "^1.0.0",
"spryker/cart-permission-groups-rest-api": "^1.2.1",
"spryker/cart-reorder": "^0.1.0",
"spryker/cart-reorder-extension": "^1.0.0",
"spryker/cart-reorder-rest-api": "^0.1.0",
"spryker/cart-reorder-rest-api-extension": "^1.0.0",
"spryker/cart-variant": "^2.0.0",
"spryker/carts-rest-api": "^5.17.0",
"spryker/carts-rest-api-extension": "^1.0.0",
"spryker/catalog": "^5.7.0",
"spryker/catalog-extension": "^1.0.0",
"spryker/catalog-price-product-connector": "^1.0.0",
"spryker/catalog-search-products-resource-relationship": "^1.0.0",
"spryker/catalog-search-rest-api": "^2.6.0",
"spryker/categories-backend-api": "^0.2.0",
"spryker/categories-rest-api": "^1.0.0",
"spryker/category": "^5.0.0",
"spryker/category-data-feed": "^0.2.0",
"spryker/category-data-import": "^0.3.0",
"spryker/category-discount-connector": "^1.0.0",
"spryker/category-dynamic-entity-connector": "^1.0.0",
"spryker/category-exporter": "^3.0.0",
"spryker/category-extension": "^1.0.0",
"spryker/category-gui": "^2.0.0",
"spryker/category-gui-extension": "^1.0.0",
"spryker/category-image": "^1.0.0",
"spryker/category-image-gui": "^1.3.0",
"spryker/category-image-storage": "^1.4.0",
"spryker/category-merchant-commission-connector": "^1.0.0",
"spryker/category-navigation-connector": "^1.0.0",
"spryker/category-page-search": "^2.1.0",
"spryker/category-storage": "^2.1.1",
"spryker/chart": "^1.0.0",
"spryker/chart-gui": "^1.1.1",
"spryker/checkout": "^6.0.0",
"spryker/checkout-extension": "^1.3.0",
"spryker/checkout-rest-api": "^3.7.1",
"spryker/checkout-rest-api-extension": "^1.0.0",
"spryker/click-and-collect-example": "^0.9.0",
"spryker/cms": "^7.0.0",
"spryker/cms-block": "^3.3.0",
"spryker/cms-block-category-connector": "^2.5.0",
"spryker/cms-block-category-storage": "^1.0.0",
"spryker/cms-block-collector": "^2.0.0",
"spryker/cms-block-extension": "^1.0.0",
"spryker/cms-block-gui": "^2.0.0",
"spryker/cms-block-gui-extension": "^1.0.0",
"spryker/cms-block-product-connector": "^1.0.0",
"spryker/cms-block-product-storage": "^1.0.0",
"spryker/cms-block-storage": "^2.0.0",
"spryker/cms-block-storage-extension": "^1.0.0",
"spryker/cms-collector": "^2.0.4",
"spryker/cms-content-widget": "^1.9.0",
"spryker/cms-content-widget-cms-block-connector": "^1.0.0",
"spryker/cms-content-widget-content-connector": "^1.0.0",
"spryker/cms-content-widget-product-connector": "^1.0.0",
"spryker/cms-content-widget-product-group-connector": "^1.0.0",
"spryker/cms-content-widget-product-set-connector": "^1.0.0",
"spryker/cms-extension": "^1.0.0",
"spryker/cms-gui": "^5.0.0",
"spryker/cms-gui-extension": "^1.0.0",
"spryker/cms-navigation-connector": "^1.1.1",
"spryker/cms-page-data-import": "^1.0.0",
"spryker/cms-page-search": "^2.0.0",
"spryker/cms-pages-content-banners-resource-relationship": "^1.0.0",
"spryker/cms-pages-content-product-abstract-lists-resource-relationship": "^1.0.0",
"spryker/cms-pages-rest-api": "^1.0.0",
"spryker/cms-slot": "^1.0.0",
"spryker/cms-slot-block": "^1.0.0",
"spryker/cms-slot-block-category-connector": "^1.0.0",
"spryker/cms-slot-block-category-gui": "^1.0.0",
"spryker/cms-slot-block-cms-connector": "^1.0.0",
"spryker/cms-slot-block-cms-gui": "^1.0.0",
"spryker/cms-slot-block-data-import": "^0.2.0",
"spryker/cms-slot-block-extension": "^1.0.0",
"spryker/cms-slot-block-gui": "^1.0.0",
"spryker/cms-slot-block-gui-extension": "^1.0.0",
"spryker/cms-slot-block-product-category-connector": "^1.0.0",
"spryker/cms-slot-block-product-category-gui": "^1.0.0",
"spryker/cms-slot-block-storage": "^1.0.0",
"spryker/cms-slot-data-import": "^0.7.0",
"spryker/cms-slot-extension": "^1.0.0",
"spryker/cms-slot-gui": "^1.0.0",
"spryker/cms-slot-locale-connector": "^1.0.0",
"spryker/cms-slot-storage": "^1.0.0",
"spryker/cms-slot-store-connector": "^1.0.0",
"spryker/cms-storage": "^2.0.0",
"spryker/cms-user-connector": "^1.1.0",
"spryker/collector": "^6.0.0",
"spryker/collector-search-connector": "^1.0.0",
"spryker/collector-storage-connector": "^1.0.0",
"spryker/comment": "^1.0.0",
"spryker/comment-data-import": "^0.1.0",
"spryker/comment-extension": "^1.0.0",
"spryker/comment-gui": "^1.0.0",
"spryker/comment-merchant-portal-gui": "^1.0.0",
"spryker/comment-merchant-relation-request-connector": "^1.0.0",
"spryker/comment-merchant-relationship-connector": "^1.0.0",
"spryker/comment-sales-connector": "^1.0.0",
"spryker/comment-user-connector": "^1.0.0",
"spryker/companies-rest-api": "^1.2.0",
"spryker/company": "^1.0.0",
"spryker/company-business-unit": "^2.0.0",
"spryker/company-business-unit-addresses-rest-api": "^1.1.0",
"spryker/company-business-unit-data-import": "^0.5.0",
"spryker/company-business-unit-gui": "^2.8.1",
"spryker/company-business-unit-sales-connector": "^1.0.0",
"spryker/company-business-unit-storage": "^1.0.0",
"spryker/company-business-units-rest-api": "^1.3.0",
"spryker/company-business-units-rest-api-extension": "^1.0.0",
"spryker/company-data-import": "^0.2.0",
"spryker/company-extension": "^1.0.0",
"spryker/company-gui": "^1.5.0",
"spryker/company-mail-connector": "^1.0.0",
"spryker/company-role": "^1.0.0",
"spryker/company-role-data-import": "^0.1.0",
"spryker/company-role-gui": "^1.6.0",
"spryker/company-role-gui-extension": "^1.0.0",
"spryker/company-roles-rest-api": "^1.0.0",
"spryker/company-sales-connector": "^1.0.0",
"spryker/company-supplier-data-import": "^0.1.0",
"spryker/company-supplier-gui": "^1.0.0",
"spryker/company-unit-address": "^1.12.0",
"spryker/company-unit-address-data-import": "^0.3.0",
"spryker/company-unit-address-extension": "^1.0.0",
"spryker/company-unit-address-gui": "^1.0.0",
"spryker/company-unit-address-gui-extension": "^1.1.0",
"spryker/company-unit-address-label": "^1.1.1",
"spryker/company-unit-address-label-data-import": "^0.1.0",
"spryker/company-unit-address-label-gui": "^1.0.2",
"spryker/company-user": "^2.0.0",
"spryker/company-user-agent": "^1.0.0",
"spryker/company-user-auth-rest-api": "^2.0.0",
"spryker/company-user-data-import": "^0.2.0",
"spryker/company-user-extension": "^1.0.0",
"spryker/company-user-gui": "^1.0.0",
"spryker/company-user-gui-extension": "^1.0.0",
"spryker/company-user-invitation": "^1.0.0",
"spryker/company-user-storage": "^1.4.0",
"spryker/company-user-storage-extension": "^1.0.0",
"spryker/company-users-rest-api": "^2.4.0",
"spryker/config": "^3.0.0",
"spryker/configurable-bundle": "^2.0.0",
"spryker/configurable-bundle-cart": "^1.0.0",
"spryker/configurable-bundle-carts-rest-api": "^1.0.0",
"spryker/configurable-bundle-data-import": "^0.2.0",
"spryker/configurable-bundle-gui": "^1.0.0",
"spryker/configurable-bundle-gui-extension": "^1.0.0",
"spryker/configurable-bundle-note": "^1.0.0",
"spryker/configurable-bundle-page-search": "^1.0.0",
"spryker/configurable-bundle-page-search-extension": "^1.0.0",
"spryker/configurable-bundle-storage": "^2.0.0",
"spryker/configurable-bundles-products-resource-relationship": "^1.0.0",
"spryker/configurable-bundles-rest-api": "^1.1.0",
"spryker/console": "^4.10.1",
"spryker/content": "^2.2.1",
"spryker/content-banner": "^2.0.0",
"spryker/content-banner-data-import": "^0.2.0",
"spryker/content-banner-gui": "^2.0.0",
"spryker/content-banners-rest-api": "^2.0.0",
"spryker/content-file": "^1.0.0",
"spryker/content-file-gui": "^2.0.0",
"spryker/content-gui": "^2.4.7",
"spryker/content-gui-extension": "^1.0.0",
"spryker/content-navigation": "^1.0.0",
"spryker/content-navigation-data-import": "^0.1.0",
"spryker/content-navigation-gui": "^1.0.0",
"spryker/content-product": "^1.0.0",
"spryker/content-product-abstract-lists-rest-api": "^1.0.0",
"spryker/content-product-data-import": "^0.3.0",
"spryker/content-product-gui": "^1.0.0",
"spryker/content-product-set": "^1.0.0",
"spryker/content-product-set-data-import": "^0.2.0",
"spryker/content-product-set-gui": "^1.0.0",
"spryker/content-storage": "^2.0.0",
"spryker/content-storage-extension": "^1.0.0",
"spryker/country": "^4.0.0",
"spryker/country-data-import": "^0.1.0",
"spryker/country-gui": "^1.0.0",
"spryker/csv": "^3.0.0",
"spryker/currency": "^4.0.0",
"spryker/currency-data-import": "^0.1.0",
"spryker/currency-extension": "^1.0.0",
"spryker/currency-gui": "^1.0.0",
"spryker/customer": "^7.37.0",
"spryker/customer-access": "^1.0.0",
"spryker/customer-access-gui": "^1.0.0",
"spryker/customer-access-permission": "^1.2.2",
"spryker/customer-access-rest-api": "^1.0.0",
"spryker/customer-access-storage": "^1.7.0",
"spryker/customer-api": "^0.2.0",
"spryker/customer-catalog": "^1.0.0",
"spryker/customer-extension": "^1.0.0",
"spryker/customer-group": "^2.0.0",
"spryker/customer-group-discount-connector": "^2.0.0",
"spryker/customer-note": "^1.0.0",
"spryker/customer-note-gui": "^1.0.0",
"spryker/customer-storage": "^1.0.0",
"spryker/customer-user-connector": "^1.0.0",
"spryker/customer-user-connector-gui": "^1.3.1",
"spryker/customers-rest-api": "^1.19.0",
"spryker/customers-rest-api-extension": "^1.0.0",
"spryker/dashboard": "^1.0.0",
"spryker/dashboard-merchant-portal-gui": "^3.0.0",
"spryker/dashboard-merchant-portal-gui-extension": "^1.0.0",
"spryker/data-export": "^0.1.0",
"spryker/data-export-extension": "^0.1.0",
"spryker/data-import": "^1.0.0",
"spryker/dataset": "^1.0.0",
"spryker/discount": "^9.17.0",
"spryker/discount-calculation-connector": "^5.2.0",
"spryker/discount-extension": "^1.0.0",
"spryker/discount-merchant-sales-order": "^1.0.0",
"spryker/discount-merchant-sales-order-gui": "^1.0.0",
"spryker/discount-promotion": "^4.2.2",
"spryker/discount-promotions-rest-api": "^1.3.0",
"spryker/discounts-rest-api": "^1.0.0",
"spryker/doctrine-inflector": "^1.0.0",
"spryker/documentation-generator-api": "^1.0.0",
"spryker/documentation-generator-api-extension": "^1.0.0",
"spryker/documentation-generator-open-api": "^1.0.0",
"spryker/documentation-generator-open-api-extension": "^1.0.0",
"spryker/documentation-generator-rest-api": "^1.12.1",
"spryker/documentation-generator-rest-api-extension": "^1.0.0",
"spryker/dummy-marketplace-payment": "^0.2.0",
"spryker/dummy-merchant-portal-gui": "^0.5.0",
"spryker/dummy-payment": "^2.6.0",
"spryker/dynamic-entity": "^1.0.0",
"spryker/dynamic-entity-backend-api": "^1.0.0",
"spryker/dynamic-entity-extension": "^1.0.0",
"spryker/dynamic-entity-gui": "^1.0.0",
"spryker/egulias": "^1.0.0",
"spryker/elastica": "^6.0.0",
"spryker/entity-tag": "^1.0.2",
"spryker/entity-tags-rest-api": "^1.0.0",
"spryker/error-handler": "^2.5.0",
"spryker/error-handler-extension": "^1.0.0",
"spryker/event": "^2.0.0",
"spryker/event-behavior": "^1.0.0",
"spryker/event-dispatcher": "^1.3.0",
"spryker/event-dispatcher-extension": "^1.0.0",
"spryker/file-manager": "^2.0.0",
"spryker/file-manager-data-import": "^2.0.0",
"spryker/file-manager-extension": "^1.0.0",
"spryker/file-manager-gui": "^2.0.0",
"spryker/file-manager-gui-extension": "^1.0.0",
"spryker/file-manager-storage": "^2.0.0",
"spryker/file-system": "^2.0.0",
"spryker/file-system-extension": "^1.0.0",
"spryker/flysystem": "^3.0.0",
"spryker/flysystem-aws3v3-file-system": "^3.0.0",
"spryker/flysystem-ftp-file-system": "^3.0.0",
"spryker/flysystem-local-file-system": "^3.0.0",
"spryker/form": "^1.0.0",
"spryker/form-extension": "^1.0.0",
"spryker/gift-card": "^1.6.0",
"spryker/gift-card-balance": "^1.0.0",
"spryker/gift-card-mail-connector": "^1.0.0",
"spryker/gift-cards-rest-api": "^1.0.0",
"spryker/glossary": "^3.0.0",
"spryker/glossary-storage": "^1.9.1",
"spryker/glue-application": "^1.0.0",
"spryker/glue-application-authorization-connector": "^1.0.0",
"spryker/glue-application-authorization-connector-extension": "^1.0.0",
"spryker/glue-application-extension": "^1.0.0",
"spryker/glue-backend-api-application": "^1.0.0",
"spryker/glue-backend-api-application-authorization-connector": "^1.0.0",
"spryker/glue-backend-api-application-authorization-connector-extension": "^1.0.0",
"spryker/glue-backend-api-application-glue-json-api-convention-connector": "^1.0.0",
"spryker/glue-json-api-convention": "^1.0.0",
"spryker/glue-json-api-convention-extension": "^1.0.0",
"spryker/glue-storefront-api-application": "^1.0.0",
"spryker/glue-storefront-api-application-authorization-connector": "^1.0.0",
"spryker/glue-storefront-api-application-glue-json-api-convention-connector": "^1.0.0",
"spryker/graceful-runner": "^1.0.0",
"spryker/graph": "^3.0.0",
"spryker/graphviz": "^2.0.0",
"spryker/gui": "^3.0.0",
"spryker/gui-table": "^3.0.0",
"spryker/guzzle": "^2.0.0",
"spryker/health-check": "^1.0.0",
"spryker/health-check-extension": "^1.0.0",
"spryker/http": "^1.5.0",
"spryker/http-extension": "^1.0.0",
"spryker/incremental-installer": "^0.2.0",
"spryker/incremental-installer-extension": "^0.2.0",
"spryker/index-generator": "^1.0.0",
"spryker/install": "^1.0.0",
"spryker/installer": "^4.0.0",
"spryker/installer-extension": "^1.0.0",
"spryker/invoice": "^2.0.0",
"spryker/json-path": "^1.0.0",
"spryker/json-schema": "^1.0.0",
"spryker/kernel": "^3.0.0",
"spryker/kernel-app": "^1.0.0",
"spryker/kernel-app-extension": "^1.0.0",
"spryker/key-builder": "^1.0.0",
"spryker/laminas": "^1.0.0",
"spryker/locale": "^4.0.0",
"spryker/locale-data-import": "^0.1.0",
"spryker/locale-extension": "^1.0.0",
"spryker/locale-gui": "^1.0.0",
"spryker/log": "^3.0.0",
"spryker/log-extension": "^1.0.0",
"spryker/mail": "^4.0.0",
"spryker/mail-extension": "^1.0.0",
"spryker/maintenance": "^3.3.0",
"spryker/manual-order-entry": "^1.1.3",
"spryker/manual-order-entry-gui": "^0.9.0",
"spryker/manual-order-entry-gui-extension": "^1.0.0",
"spryker/merchant": "^3.0.0",
"spryker/merchant-agent": "^1.0.0",
"spryker/merchant-agent-gui": "^1.0.0",
"spryker/merchant-app": "^1.0.0",
"spryker/merchant-app-merchant-portal-gui": "^1.0.0",
"spryker/merchant-categories-rest-api": "^1.0.0",
"spryker/merchant-category": "^1.0.0",
"spryker/merchant-category-data-import": "^0.3.0",
"spryker/merchant-category-search": "^1.0.0",
"spryker/merchant-commission": "^1.0.0",
"spryker/merchant-commission-data-export": "^0.2.0",
"spryker/merchant-commission-data-import": "^0.2.0",
"spryker/merchant-commission-extension": "^1.0.0",
"spryker/merchant-commission-gui": "^1.0.0",
"spryker/merchant-commission-gui-extension": "^1.0.0",
"spryker/merchant-data-import": "^0.5.0",
"spryker/merchant-discount-connector": "^1.0.0",
"spryker/merchant-extension": "^1.0.0",
"spryker/merchant-gui": "^3.7.0",
"spryker/merchant-gui-extension": "^1.0.0",
"spryker/merchant-oms": "^1.0.0",
"spryker/merchant-oms-data-import": "^0.5.0",
"spryker/merchant-oms-gui": "^1.0.0",
"spryker/merchant-opening-hours": "^1.0.0",
"spryker/merchant-opening-hours-data-import": "^0.6.0",
"spryker/merchant-opening-hours-rest-api": "^1.0.0",
"spryker/merchant-opening-hours-storage": "^1.0.0",
"spryker/merchant-portal-application": "^1.0.0",
"spryker/merchant-product": "^1.0.0",
"spryker/merchant-product-approval": "^1.0.0",
"spryker/merchant-product-approval-data-import": "^0.1.0",
"spryker/merchant-product-data-import": "^0.3.0",
"spryker/merchant-product-gui": "^1.0.0",
"spryker/merchant-product-offer": "^1.0.0",
"spryker/merchant-product-offer-data-import": "^1.0.0",
"spryker/merchant-product-offer-gui": "^1.0.0",
"spryker/merchant-product-offer-search": "^1.0.0",
"spryker/merchant-product-offer-service-point-availabilities-rest-api": "^0.3.0",
"spryker/merchant-product-offer-service-point-availability": "^0.3.0",
"spryker/merchant-product-offer-shopping-lists-rest-api": "^1.0.0",
"spryker/merchant-product-offer-storage": "^2.0.0",
"spryker/merchant-product-offer-storage-extension": "^1.0.0",
"spryker/merchant-product-offer-wishlist": "^1.1.0",
"spryker/merchant-product-offer-wishlist-rest-api": "^1.1.0",
"spryker/merchant-product-offers-rest-api": "^2.0.0",
"spryker/merchant-product-option": "^1.0.0",
"spryker/merchant-product-option-data-import": "^0.2.0",
"spryker/merchant-product-option-gui": "^1.0.0",
"spryker/merchant-product-option-storage": "^1.0.0",
"spryker/merchant-product-search": "^1.0.0",
"spryker/merchant-product-shopping-lists-rest-api": "^1.0.0",
"spryker/merchant-product-storage": "^1.0.0",
"spryker/merchant-product-wishlist": "^1.1.0",
"spryker/merchant-products-rest-api": "^1.0.0",
"spryker/merchant-profile": "^1.0.0",
"spryker/merchant-profile-data-import": "^0.6.0",
"spryker/merchant-profile-gui": "^1.0.0",
"spryker/merchant-profile-merchant-portal-gui": "^3.0.0",
"spryker/merchant-profile-merchant-portal-gui-extension": "^1.0.0",
"spryker/merchant-relation-request": "^1.0.0",
"spryker/merchant-relation-request-extension": "^1.0.0",
"spryker/merchant-relation-request-gui": "^1.0.0",
"spryker/merchant-relation-request-merchant-portal-gui": "^1.0.0",
"spryker/merchant-relationship": "^1.0.0",
"spryker/merchant-relationship-api": "^0.1.0",
"spryker/merchant-relationship-data-import": "^0.2.0",
"spryker/merchant-relationship-extension": "^1.0.0",
"spryker/merchant-relationship-gui": "^1.0.0",
"spryker/merchant-relationship-gui-extension": "^1.0.0",
"spryker/merchant-relationship-merchant-portal-gui": "^1.0.0",
"spryker/merchant-relationship-merchant-portal-gui-extension": "^1.0.0",
"spryker/merchant-relationship-product-list": "^1.3.1",
"spryker/merchant-relationship-product-list-data-import": "^0.1.0",
"spryker/merchant-relationship-product-list-gui": "^2.0.0",
"spryker/merchant-relationship-product-lists-rest-api": "^0.1.0",
"spryker/merchant-relationship-sales-order-threshold": "^1.0.0",
"spryker/merchant-relationship-sales-order-threshold-data-import": "^0.1.0",
"spryker/merchant-relationship-sales-order-threshold-gui": "^1.6.2",
"spryker/merchant-sales-order": "^1.0.0",
"spryker/merchant-sales-order-data-export": "^0.2.0",
"spryker/merchant-sales-order-extension": "^1.0.0",
"spryker/merchant-sales-order-merchant-user-gui": "^1.0.0",
"spryker/merchant-sales-order-sales-merchant-commission": "^1.0.0",
"spryker/merchant-sales-order-threshold-gui": "^1.0.0",
"spryker/merchant-sales-return": "^1.0.0",
"spryker/merchant-sales-return-gui": "^1.0.0",
"spryker/merchant-sales-return-merchant-user-gui": "^1.0.0",
"spryker/merchant-sales-returns-rest-api": "^1.0.0",
"spryker/merchant-search": "^1.0.0",
"spryker/merchant-search-extension": "^1.0.0",
"spryker/merchant-shipment": "^1.0.0",
"spryker/merchant-shipment-gui": "^1.0.0",
"spryker/merchant-shipments-rest-api": "^0.1.0",
"spryker/merchant-stock": "^1.0.0",
"spryker/merchant-stock-data-import": "^0.3.0",
"spryker/merchant-stock-gui": "^1.0.0",
"spryker/merchant-storage": "^1.0.0",
"spryker/merchant-switcher": "^0.6.0",
"spryker/merchant-user": "^1.0.0",
"spryker/merchant-user-extension": "^1.0.0",
"spryker/merchant-user-gui": "^1.0.0",
"spryker/merchant-user-password-reset-mail": "^1.0.0",
"spryker/merchants-rest-api": "^1.0.0",
"spryker/merchants-rest-api-extension": "^1.0.0",
"spryker/message-broker": "^1.0.0",
"spryker/message-broker-aws": "^1.0.0",
"spryker/message-broker-aws-extension": "^1.0.0",
"spryker/message-broker-extension": "^1.0.0",
"spryker/messenger": "^3.6.2",
"spryker/messenger-extension": "^1.0.0",
"spryker/module-finder": "^1.0.0",
"spryker/money": "^2.0.0",
"spryker/money-gui": "^1.0.0",
"spryker/monitoring": "^2.3.0",
"spryker/monolog": "^2.0.0",
"spryker/multi-cart": "^1.0.0",
"spryker/multi-cart-data-import": "^0.1.0",
"spryker/multi-carts-rest-api": "^1.0.0",
"spryker/navigation": "^2.0.0",
"spryker/navigation-collector": "^1.0.0",
"spryker/navigation-gui": "^2.2.1",
"spryker/navigation-storage": "^1.0.0",
"spryker/navigations-category-nodes-resource-relationship": "^1.0.0",
"spryker/navigations-rest-api": "^2.0.0",
"spryker/newsletter": "^4.0.0",
"spryker/nopayment": "^4.1.0",
"spryker/oauth": "^2.0.0",
"spryker/oauth-agent-connector": "^1.0.0",
"spryker/oauth-api": "^1.0.0",
"spryker/oauth-auth0": "^1.0.0",
"spryker/oauth-backend-api": "^1.0.0",
"spryker/oauth-backend-api-extension": "^1.0.0",
"spryker/oauth-client": "^1.0.0",
"spryker/oauth-client-extension": "^1.0.0",
"spryker/oauth-code-flow": "^0.1.0",
"spryker/oauth-company-user": "^2.1.0",
"spryker/oauth-company-user-extension": "^1.0.0",
"spryker/oauth-cryptography": "^1.0.0",
"spryker/oauth-customer-connector": "^1.7.1",
"spryker/oauth-customer-connector-extension": "^1.0.0",
"spryker/oauth-customer-validation": "^1.0.0",
"spryker/oauth-dummy": "^1.0.0",
"spryker/oauth-extension": "^1.0.0",
"spryker/oauth-merchant-user": "^1.0.0",
"spryker/oauth-permission": "^1.0.0",
"spryker/oauth-revoke": "^1.0.0",
"spryker/oauth-revoke-extension": "^1.0.0",
"spryker/oauth-user-connector": "^1.0.0",
"spryker/oauth-user-connector-extension": "^1.0.0",
"spryker/oauth-warehouse": "^1.0.0",
"spryker/oauth-warehouse-user": "^1.0.0",
"spryker/oms": "^11.15.2",
"spryker/oms-discount-connector": "^3.0.0",
"spryker/oms-extension": "^1.0.0",
"spryker/oms-multi-thread": "^1.0.0",
"spryker/oms-product-offer-reservation": "^1.0.0",
"spryker/oms-rest-api": "^0.1.0",
"spryker/order-amendments-rest-api": "^0.2.0",
"spryker/order-custom-reference": "^1.0.0",
"spryker/order-custom-reference-gui": "^1.0.0",
"spryker/order-matrix": "^1.0.0",
"spryker/order-matrix-gui": "^1.0.0",
"spryker/order-payments-rest-api": "^1.0.0",
"spryker/order-payments-rest-api-extension": "^1.0.0",
"spryker/orders-rest-api": "^4.10.0",
"spryker/orders-rest-api-extension": "^1.0.0",
"spryker/payment": "^5.4.1",
"spryker/payment-app": "^1.0.0",
"spryker/payment-app-extension": "^1.0.0",
"spryker/payment-app-shipment": "^1.0.0",
"spryker/payment-cart-connector": "^1.0.0",
"spryker/payment-data-import": "^1.0.0",
"spryker/payment-extension": "^1.0.0",
"spryker/payment-gui": "^1.0.0",
"spryker/payments-rest-api": "^1.1.1",
"spryker/permission": "^1.0.0",
"spryker/permission-extension": "^1.0.0",
"spryker/persistent-cart": "^3.0.0",
"spryker/persistent-cart-extension": "^1.0.0",
"spryker/persistent-cart-share": "^1.0.0",
"spryker/persistent-cart-share-extension": "^1.0.0",
"spryker/picking-list": "^1.0.0",
"spryker/picking-list-extension": "^1.0.0",
"spryker/picking-list-multi-shipment-picking-strategy-example": "^0.2.0",
"spryker/picking-list-push-notification": "^1.0.0",
"spryker/picking-lists-backend-api": "^1.0.0",
"spryker/picking-lists-backend-api-extension": "^1.0.0",
"spryker/picking-lists-users-backend-api": "^1.0.0",
"spryker/picking-lists-warehouses-backend-api": "^1.0.0",
"spryker/price": "^5.3.0",
"spryker/price-cart-connector": "^6.0.0",
"spryker/price-cart-connector-extension": "^1.0.0",
"spryker/price-data-feed": "^0.2.0",
"spryker/price-extension": "^1.0.0",
"spryker/price-product": "^4.0.0",
"spryker/price-product-data-import": "^0.1.0",
"spryker/price-product-extension": "^1.0.0",
"spryker/price-product-merchant-commission-connector": "^1.0.0",
"spryker/price-product-merchant-relationship": "^1.7.0",
"spryker/price-product-merchant-relationship-data-import": "^0.2.0",
"spryker/price-product-merchant-relationship-gui": "^1.0.0",
"spryker/price-product-merchant-relationship-merchant-portal-gui": "^2.0.0",
"spryker/price-product-merchant-relationship-storage": "^1.13.0",
"spryker/price-product-merchant-relationship-storage-extension": "^1.0.0",
"spryker/price-product-offer": "^1.0.0",
"spryker/price-product-offer-data-import": "^0.7.0",
"spryker/price-product-offer-extension": "^1.0.0",
"spryker/price-product-offer-gui": "^1.0.0",
"spryker/price-product-offer-storage": "^1.0.0",
"spryker/price-product-offer-storage-extension": "^1.0.0",
"spryker/price-product-offer-volume": "^1.0.0",
"spryker/price-product-offer-volume-gui": "^1.0.0",
"spryker/price-product-offer-volumes-rest-api": "^1.0.0",
"spryker/price-product-schedule": "^2.0.0",
"spryker/price-product-schedule-data-import": "^0.1.0",
"spryker/price-product-schedule-gui": "^2.0.0",
"spryker/price-product-storage": "^4.8.0",
"spryker/price-product-storage-extension": "^1.3.0",
"spryker/price-product-volume": "^3.0.0",
"spryker/price-product-volume-gui": "^3.0.0",
"spryker/price-product-volumes-rest-api": "^1.0.0",
"spryker/product": "^6.25.0",
"spryker/product-abstract-data-feed": "^0.2.0",
"spryker/product-alternative": "^1.0.0",
"spryker/product-alternative-data-import": "^1.0.1",
"spryker/product-alternative-extension": "^1.0.0",
"spryker/product-alternative-gui": "^1.0.0",
"spryker/product-alternative-product-label-connector": "^1.1.1",
"spryker/product-alternative-storage": "^1.9.1",
"spryker/product-alternative-storage-extension": "^1.0.0",
"spryker/product-api": "^0.2.0",
"spryker/product-approval": "^1.0.0",
"spryker/product-approval-data-import": "^0.1.0",
"spryker/product-approval-gui": "^1.0.0",
"spryker/product-attribute": "^1.0.0",
"spryker/product-attribute-extension": "^1.0.0",
"spryker/product-attribute-gui": "^1.0.0",
"spryker/product-attributes-backend-api": "^1.0.0",
"spryker/product-attributes-rest-api": "^1.0.0",
"spryker/product-availabilities-rest-api": "^4.2.0",
"spryker/product-barcode": "^1.1.2",
"spryker/product-barcode-gui": "^1.0.0",
"spryker/product-bundle": "^7.9.0",
"spryker/product-bundle-carts-rest-api": "^1.0.0",
"spryker/product-bundle-discount-connector": "^1.0.0",
"spryker/product-bundle-product-list-connector": "^1.0.0",
"spryker/product-bundle-storage": "^1.0.0",
"spryker/product-bundles-rest-api": "^1.0.0",
"spryker/product-cart-connector": "^4.8.0",
"spryker/product-category": "^4.12.1",
"spryker/product-category-filter": "^1.0.0",
"spryker/product-category-filter-collector": "^1.0.0",
"spryker/product-category-filter-gui": "^2.0.0",
"spryker/product-category-filter-gui-extension": "^1.0.0",
"spryker/product-category-filter-storage": "^1.0.0",
"spryker/product-category-search": "^1.1.0",
"spryker/product-category-storage": "^2.2.0",
"spryker/product-category-storage-extension": "^1.0.0",
"spryker/product-configuration": "^1.0.0",
"spryker/product-configuration-cart": "^1.0.0",
"spryker/product-configuration-data-import": "^0.2.0",
"spryker/product-configuration-extension": "^1.0.0",
"spryker/product-configuration-gui": "^1.0.0",
"spryker/product-configuration-persistent-cart": "^1.0.0",
"spryker/product-configuration-shopping-list": "^1.0.0",
"spryker/product-configuration-shopping-lists-rest-api": "^1.0.0",
"spryker/product-configuration-shopping-lists-rest-api-extension": "^1.0.0",
"spryker/product-configuration-storage": "^1.0.0",
"spryker/product-configuration-wishlist": "^1.0.0",
"spryker/product-configuration-wishlists-rest-api": "^1.0.0",
"spryker/product-configuration-wishlists-rest-api-extension": "^1.0.0",
"spryker/product-configurations-price-product-volumes-rest-api": "^1.0.0",
"spryker/product-configurations-rest-api": "^1.0.0",
"spryker/product-configurations-rest-api-extension": "^1.0.0",
"spryker/product-customer-permission": "^1.0.0",
"spryker/product-discontinued": "^1.6.0",
"spryker/product-discontinued-data-import": "^1.0.1",
"spryker/product-discontinued-extension": "^1.0.0",
"spryker/product-discontinued-gui": "^1.0.0",
"spryker/product-discontinued-product-bundle-connector": "^1.2.2",
"spryker/product-discontinued-product-label-connector": "^1.3.0",
"spryker/product-discontinued-rest-api": "^1.0.0",
"spryker/product-discontinued-storage": "^1.12.0",
"spryker/product-discount-connector": "^5.0.0",
"spryker/product-discount-connector-extension": "^1.0.0",
"spryker/product-dynamic-entity-connector": "^1.0.0",
"spryker/product-extension": "^1.0.0",
"spryker/product-group": "^1.0.0",
"spryker/product-group-collector": "^1.0.0",
"spryker/product-group-storage": "^1.0.0",
"spryker/product-image": "^3.11.0",
"spryker/product-image-cart-connector": "^1.0.0",
"spryker/product-image-sets-backend-api": "^1.0.0",
"spryker/product-image-sets-rest-api": "^1.0.0",
"spryker/product-image-storage": "^1.13.0",
"spryker/product-label": "^3.2.0",
"spryker/product-label-collector": "^1.2.1",
"spryker/product-label-data-import": "^0.1.0",
"spryker/product-label-discount-connector": "^3.0.3",
"spryker/product-label-gui": "^3.0.0",
"spryker/product-label-search": "^2.0.0",
"spryker/product-label-storage": "^2.0.0",
"spryker/product-labels-rest-api": "^1.0.0",
"spryker/product-list": "^1.0.0",
"spryker/product-list-data-import": "^0.1.0",
"spryker/product-list-extension": "^1.0.0",
"spryker/product-list-gui": "^2.0.0",
"spryker/product-list-gui-extension": "^1.0.0",
"spryker/product-list-search": "^2.4.0",
"spryker/product-list-storage": "^1.14.0",
"spryker/product-management": "^0.19.0",
"spryker/product-measurement-unit": "^5.3.0",
"spryker/product-measurement-unit-data-import": "^1.0.0",
"spryker/product-measurement-unit-storage": "^1.0.0",
"spryker/product-measurement-units-rest-api": "^1.1.0",
"spryker/product-merchant-commission-connector": "^1.0.0",
"spryker/product-merchant-portal-gui": "^4.0.0",
"spryker/product-merchant-portal-gui-extension": "^1.0.0",
"spryker/product-new": "^1.3.3",
"spryker/product-offer": "^1.0.0",
"spryker/product-offer-availabilities-rest-api": "^1.0.0",
"spryker/product-offer-availability": "^1.0.0",
"spryker/product-offer-availability-storage": "^1.0.0",
"spryker/product-offer-discount-connector": "^1.0.0",
"spryker/product-offer-extension": "^1.0.0",
"spryker/product-offer-gui": "^1.0.0",
"spryker/product-offer-gui-extension": "^1.0.0",
"spryker/product-offer-merchant-portal-gui": "^3.0.0",
"spryker/product-offer-merchant-portal-gui-extension": "^1.0.0",
"spryker/product-offer-packaging-unit": "^1.0.0",
"spryker/product-offer-prices-rest-api": "^2.0.0",
"spryker/product-offer-prices-rest-api-extension": "^1.0.0",
"spryker/product-offer-reservation-gui": "^1.0.0",
"spryker/product-offer-sales": "^1.0.0",
"spryker/product-offer-sales-rest-api": "^1.0.0",
"spryker/product-offer-service-point": "^1.0.0",
"spryker/product-offer-service-point-availabilities-rest-api": "^1.0.0",
"spryker/product-offer-service-point-availability": "^1.0.0",
"spryker/product-offer-service-point-availability-calculator-storage": "^1.0.0",
"spryker/product-offer-service-point-availability-calculator-storage-extension": "^1.0.0",
"spryker/product-offer-service-point-availability-storage": "^1.0.0",
"spryker/product-offer-service-point-availability-storage-extension": "^1.0.0",
"spryker/product-offer-service-point-data-import": "^0.4.0",
"spryker/product-offer-service-point-gui": "^1.0.0",
"spryker/product-offer-service-point-merchant-portal-gui": "^2.0.0",
"spryker/product-offer-service-point-storage": "^1.0.0",
"spryker/product-offer-service-point-storage-extension": "^1.0.0",
"spryker/product-offer-shipment-type": "^1.0.0",
"spryker/product-offer-shipment-type-availability": "^1.0.0",
"spryker/product-offer-shipment-type-availability-storage": "^1.0.0",
"spryker/product-offer-shipment-type-data-import": "^0.4.0",
"spryker/product-offer-shipment-type-gui": "^1.0.0",
"spryker/product-offer-shipment-type-merchant-portal-gui": "^2.0.0",
"spryker/product-offer-shipment-type-storage": "^1.0.0",
"spryker/product-offer-shipment-type-storage-extension": "^1.0.0",
"spryker/product-offer-shopping-list": "^1.0.0",
"spryker/product-offer-shopping-list-data-import": "^0.1.0",
"spryker/product-offer-shopping-lists-rest-api": "^1.0.0",
"spryker/product-offer-stock": "^1.0.0",
"spryker/product-offer-stock-data-import": "^0.7.0",
"spryker/product-offer-stock-extension": "^1.0.0",
"spryker/product-offer-stock-gui": "^1.0.0",
"spryker/product-offer-stock-gui-extension": "^1.0.0",
"spryker/product-offer-storage": "^1.0.0",
"spryker/product-offer-storage-extension": "^1.0.0",
"spryker/product-offer-validity": "^1.0.0",
"spryker/product-offer-validity-data-import": "^0.5.0",
"spryker/product-offer-validity-gui": "^1.0.0",
"spryker/product-offer-warehouse-allocation-example": "^0.3.0",
"spryker/product-offers-rest-api": "^1.0.0",
"spryker/product-option": "^8.0.0",
"spryker/product-option-cart-connector": "^7.0.0",
"spryker/product-option-extension": "^1.0.0",
"spryker/product-option-gui-extension": "^1.0.0",
"spryker/product-option-merchant-portal-gui": "^1.0.0",
"spryker/product-option-storage": "^1.0.0",
"spryker/product-option-storage-extension": "^1.0.0",
"spryker/product-options-rest-api": "^1.2.0",
"spryker/product-packaging-unit": "^4.6.0",
"spryker/product-packaging-unit-data-import": "^2.0.0",
"spryker/product-packaging-unit-storage": "^5.0.0",
"spryker/product-packaging-units-backend-api": "^1.0.0",
"spryker/product-page-search": "^3.26.0",
"spryker/product-prices-rest-api": "^1.6.0",
"spryker/product-prices-rest-api-extension": "^1.0.0",
"spryker/product-quantity": "^3.0.0",
"spryker/product-quantity-data-import": "^3.0.0",
"spryker/product-quantity-storage": "^3.0.0",
"spryker/product-relation": "^3.2.0",
"spryker/product-relation-collector": "^2.0.0",
"spryker/product-relation-data-import": "^1.0.0",
"spryker/product-relation-gui": "^1.0.0",
"spryker/product-relation-storage": "^2.0.0",
"spryker/product-resource-alias-storage": "^1.0.0",
"spryker/product-review": "^2.0.0",
"spryker/product-review-collector": "^1.0.0",
"spryker/product-review-gui": "^1.0.0",
"spryker/product-review-search": "^1.5.0",
"spryker/product-review-storage": "^1.0.0",
"spryker/product-reviews-rest-api": "^1.0.0",
"spryker/product-search": "^5.0.0",
"spryker/product-search-config-storage": "^1.0.0",
"spryker/product-set": "^1.0.0",
"spryker/product-set-collector": "^1.0.0",
"spryker/product-set-gui": "^2.0.0",
"spryker/product-set-page-search": "^1.5.1",
"spryker/product-set-storage": "^1.0.0",
"spryker/product-storage": "^1.32.0",
"spryker/product-storage-extension": "^1.0.0",
"spryker/product-tax-sets-rest-api": "^2.0.0",