This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathcomposer.json
124 lines (124 loc) · 4.83 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
{
"name": "sonata-project/ecommerce",
"type": "symfony-bundle",
"description": "E-Commerce solution provided by Sonata",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/ecommerce/contributors"
}
],
"require": {
"php": "^7.3",
"cocur/slugify": "^4.0",
"doctrine/dbal": "^2.10",
"doctrine/doctrine-bundle": "^1.8 || ^2.0",
"knplabs/knp-menu": "^3.1",
"knplabs/knp-menu-bundle": "^3.0",
"knplabs/knp-paginator-bundle": "^2.6",
"kriswallsmith/buzz": "^0.15 || 0.16.0",
"sonata-project/admin-bundle": "^3.29",
"sonata-project/block-bundle": "^3.18.3",
"sonata-project/classification-bundle": "^3.3",
"sonata-project/comment-bundle": "^3.1",
"sonata-project/datagrid-bundle": "^3.0.1",
"sonata-project/doctrine-extensions": "^1.10.1",
"sonata-project/doctrine-orm-admin-bundle": "^3.2",
"sonata-project/exporter": "^2.3",
"sonata-project/form-extensions": "^0.1 || ^1.3",
"sonata-project/formatter-bundle": "^3.4 || ^4.0",
"sonata-project/intl-bundle": "^2.4",
"sonata-project/media-bundle": "^3.10",
"sonata-project/notification-bundle": "^3.3",
"sonata-project/seo-bundle": "^2.4",
"sonata-project/twig-extensions": "^0.1 || ^1.2",
"sonata-project/user-bundle": "^4.9",
"symfony/config": "^4.4",
"symfony/console": "^4.4",
"symfony/dependency-injection": "^4.4",
"symfony/doctrine-bridge": "^4.4",
"symfony/event-dispatcher": "^4.4",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.0",
"symfony/filesystem": "^4.4",
"symfony/form": "^4.4",
"symfony/framework-bundle": "^4.4",
"symfony/http-foundation": "^4.4",
"symfony/http-kernel": "^4.4",
"symfony/intl": "^4.4",
"symfony/options-resolver": "^4.4",
"symfony/process": "^4.4",
"symfony/property-access": "^4.4",
"symfony/routing": "^4.4",
"symfony/security-core": "^4.4.23",
"symfony/security-http": "^4.4.23",
"symfony/string": "^5.1",
"symfony/templating": "^4.4",
"symfony/translation": "^4.4",
"symfony/twig-bridge": "^4.4",
"symfony/validator": "^4.4",
"twig/string-extra": "^3.0",
"twig/twig": "^2.12.1"
},
"conflict": {
"friendsofsymfony/rest-bundle": "<2.2",
"jms/serializer": "<0.13",
"sonata-project/core-bundle": "<3.20"
},
"require-dev": {
"doctrine/persistence": "^1.3.6 || ^2.0",
"friendsofsymfony/rest-bundle": "^2.2 || ^3.0",
"jms/serializer-bundle": "^2.0 || ^3.0",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"nelmio/api-doc-bundle": "^2.13",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^5.3"
},
"suggest": {
"friendsofsymfony/rest-bundle": "For using the public API methods.",
"jms/serializer": "For using the public API methods.",
"nelmio/api-doc-bundle": "For using the public API methods.",
"twig/extra-bundle": "Auto configures the Twig Intl extension"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"Sonata\\Component\\": "src/Component",
"Sonata\\BasketBundle\\": "src/BasketBundle",
"Sonata\\CustomerBundle\\": "src/CustomerBundle",
"Sonata\\DeliveryBundle\\": "src/DeliveryBundle",
"Sonata\\InvoiceBundle\\": "src/InvoiceBundle",
"Sonata\\OrderBundle\\": "src/OrderBundle",
"Sonata\\PaymentBundle\\": "src/PaymentBundle",
"Sonata\\PriceBundle\\": "src/PriceBundle",
"Sonata\\ProductBundle\\": "src/ProductBundle"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\Component\\Tests\\": "tests/Component",
"Sonata\\BasketBundle\\Tests\\": "tests/BasketBundle",
"Sonata\\CustomerBundle\\Tests\\": "tests/CustomerBundle",
"Sonata\\DeliveryBundle\\Tests\\": "tests/DeliveryBundle",
"Sonata\\InvoiceBundle\\Tests\\": "tests/InvoiceBundle",
"Sonata\\OrderBundle\\Tests\\": "tests/OrderBundle",
"Sonata\\PaymentBundle\\Tests\\": "tests/PaymentBundle",
"Sonata\\PriceBundle\\Tests\\": "tests/PriceBundle",
"Sonata\\ProductBundle\\Tests\\": "tests/ProductBundle"
}
},
"abandoned": true
}