forked from sonata-project/ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
107 lines (107 loc) · 4.06 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
{
"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.1",
"cocur/slugify": "^2.5 || ^3.0",
"knplabs/knp-menu-bundle": "^2.1",
"knplabs/knp-paginator-bundle": "^2.6",
"kriswallsmith/buzz": "^0.15 || 0.16.0",
"sonata-project/admin-bundle": "^3.29",
"sonata-project/block-bundle": "^3.8",
"sonata-project/classification-bundle": "^3.3",
"sonata-project/comment-bundle": "^3.1",
"sonata-project/core-bundle": "^3.12.0",
"sonata-project/datagrid-bundle": "^2.3",
"sonata-project/doctrine-orm-admin-bundle": "^3.2",
"sonata-project/formatter-bundle": "^3.4",
"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/user-bundle": "^3.6 || ^4.0",
"symfony/config": "^2.8",
"symfony/console": "^2.8",
"symfony/dependency-injection": "^2.8",
"symfony/doctrine-bridge": "^2.8",
"symfony/event-dispatcher": "^2.8",
"symfony/filesystem": "^2.8",
"symfony/form": "^2.8",
"symfony/framework-bundle": "^2.8",
"symfony/http-foundation": "^2.8",
"symfony/http-kernel": "^2.8",
"symfony/intl": "^2.8",
"symfony/options-resolver": "^2.8",
"symfony/process": "^2.8",
"symfony/property-access": "^2.8",
"symfony/routing": "^2.8",
"symfony/security-core": "^2.8",
"symfony/security-http": "^2.8",
"symfony/templating": "^2.8",
"symfony/translation": "^2.8",
"symfony/twig-bridge": "^2.8",
"symfony/validator": "^2.8"
},
"conflict": {
"friendsofsymfony/rest-bundle": "<1.8 || >=3.0",
"jms/serializer": "<0.13"
},
"require-dev": {
"friendsofsymfony/rest-bundle": "^1.8 || ^2.2",
"jms/serializer-bundle": "^1.0 || ^2.0",
"nelmio/api-doc-bundle": "^2.13",
"symfony/phpunit-bridge": "^4.2"
},
"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."
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.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"
}
}
}