-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcomposer.json
114 lines (114 loc) · 3.57 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
{
"name": "sylius/core-bundle",
"type": "symfony-bundle",
"description": "Sylius core bundle. It integrates all other bundles into full stack Symfony ecommerce solution.",
"keywords": [
"shop",
"ecommerce",
"store",
"webshop",
"sylius"
],
"homepage": "https://sylius.com",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "https://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "https://sylius.com"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": "^8.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"egulias/email-validator": "^3.0",
"fakerphp/faker": "^1.10",
"jms/serializer-bundle": "^3.5",
"knplabs/gaufrette": "^0.8",
"knplabs/knp-gaufrette-bundle": "^0.7",
"liip/imagine-bundle": "^2.3",
"sonata-project/block-bundle": "^4.2",
"swiftmailer/swiftmailer": "^6.2",
"sylius-labs/association-hydrator": "^1.1",
"sylius-labs/doctrine-migrations-extra-bundle": "^0.1.3",
"sylius-labs/polyfill-symfony-framework-bundle": "^1.0",
"sylius/addressing-bundle": "^1.6",
"sylius/attribute-bundle": "^1.6",
"sylius/channel-bundle": "^1.6",
"sylius/core": "^1.6",
"sylius/currency-bundle": "^1.6",
"sylius/customer-bundle": "^1.6",
"sylius/fixtures-bundle": "^1.6.1",
"sylius/grid-bundle": "^1.8",
"sylius/inventory-bundle": "^1.6",
"sylius/locale-bundle": "^1.6",
"sylius/money-bundle": "^1.6",
"sylius/order-bundle": "^1.6",
"sylius/payment-bundle": "^1.6",
"sylius/payum-bundle": "^1.6",
"sylius/product-bundle": "^1.6",
"sylius/promotion-bundle": "^1.6",
"sylius/resource-bundle": "^1.7",
"sylius/review-bundle": "^1.6",
"sylius/shipping-bundle": "^1.6",
"sylius/taxation-bundle": "^1.6",
"sylius/taxonomy-bundle": "^1.6",
"sylius/theme-bundle": "^2.1.1",
"sylius/ui-bundle": "^1.6",
"sylius/user-bundle": "^1.6",
"symfony/framework-bundle": "^5.4",
"symfony/intl": "^5.4",
"symfony/messenger": "^5.4",
"symfony/swiftmailer-bundle": "^3.4",
"symfony/templating": "^5.4",
"winzou/state-machine-bundle": "^0.5"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.12 || ^2.0",
"hwi/oauth-bundle": "^1.1",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"phpspec/phpspec": "^7.2",
"phpunit/phpunit": "^8.5",
"symfony/dependency-injection": "^5.4"
},
"conflict": {
"symfony/doctrine-bridge": "4.4.20 || 5.2.4 || 5.2.5"
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.9-dev"
}
},
"autoload": {
"psr-4": {
"Sylius\\Bundle\\CoreBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Sylius\\Bundle\\CoreBundle\\spec\\": "spec/",
"Sylius\\Bundle\\CoreBundle\\Tests\\": "Tests/"
}
},
"repositories": [
{
"type": "path",
"url": "../../*/*"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}